We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56b0b37 commit 2cc0d4dCopy full SHA for 2cc0d4d
yt_audio_backup_gui.py
@@ -247,7 +247,7 @@ def _center_main_on_screen(self):
247
return
248
self._did_initial_center = True
249
self.update_idletasks()
250
- w = self.winfo_width() or self.winfo_reqwidth() or 820
+ w = self.winfo_width() or self.winfo_reqwidth() or 1000
251
h = self.winfo_height() or self.winfo_reqheight() or 780
252
self.geometry(f"{w}x{h}")
253
self.state('zoomed')
@@ -437,7 +437,7 @@ def __init__(self) -> None:
437
except Exception:
438
pass
439
440
- w, h = 820, 780
+ w, h = 1000, 780
441
x = (self.winfo_screenwidth() - w) // 2
442
y = (self.winfo_screenheight() - h) // 2
443
self.geometry(f"{w}x{h}+{x}+{y}")
0 commit comments