Skip to content

Commit 2cc0d4d

Browse files
committed
ui: window size
1 parent 56b0b37 commit 2cc0d4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

yt_audio_backup_gui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ def _center_main_on_screen(self):
247247
return
248248
self._did_initial_center = True
249249
self.update_idletasks()
250-
w = self.winfo_width() or self.winfo_reqwidth() or 820
250+
w = self.winfo_width() or self.winfo_reqwidth() or 1000
251251
h = self.winfo_height() or self.winfo_reqheight() or 780
252252
self.geometry(f"{w}x{h}")
253253
self.state('zoomed')
@@ -437,7 +437,7 @@ def __init__(self) -> None:
437437
except Exception:
438438
pass
439439

440-
w, h = 820, 780
440+
w, h = 1000, 780
441441
x = (self.winfo_screenwidth() - w) // 2
442442
y = (self.winfo_screenheight() - h) // 2
443443
self.geometry(f"{w}x{h}+{x}+{y}")

0 commit comments

Comments
 (0)