Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,3 @@
|
|
1 |
-
#dark_mode_4bit_gui
|
2 |
import sys
|
3 |
import os
|
4 |
import torch
|
@@ -437,7 +436,7 @@ class CaptionApp(QWidget):
|
|
437 |
def __init__(self):
|
438 |
super().__init__()
|
439 |
self.setWindowTitle("JoyCaption Alpha Two")
|
440 |
-
self.setGeometry(100, 100, 1200,
|
441 |
|
442 |
# Set minimum size to maintain GUI consistency
|
443 |
self.setMinimumSize(1000, 700)
|
@@ -457,7 +456,7 @@ class CaptionApp(QWidget):
|
|
457 |
self.selected_image_path = None
|
458 |
|
459 |
# Theme variables
|
460 |
-
self.dark_mode =
|
461 |
|
462 |
def initUI(self):
|
463 |
main_layout = QHBoxLayout()
|
|
|
|
|
1 |
import sys
|
2 |
import os
|
3 |
import torch
|
|
|
436 |
def __init__(self):
|
437 |
super().__init__()
|
438 |
self.setWindowTitle("JoyCaption Alpha Two")
|
439 |
+
self.setGeometry(100, 100, 1200, 1200)
|
440 |
|
441 |
# Set minimum size to maintain GUI consistency
|
442 |
self.setMinimumSize(1000, 700)
|
|
|
456 |
self.selected_image_path = None
|
457 |
|
458 |
# Theme variables
|
459 |
+
self.dark_mode = False
|
460 |
|
461 |
def initUI(self):
|
462 |
main_layout = QHBoxLayout()
|