Skip to content

Commit 69965bd

Browse files
Made the main GUI zoom
1 parent 7c0d97a commit 69965bd

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

pica/main.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,10 @@ def __init__(self, root):
176176
self.root = root
177177
self.root.title(f"PICA Launcher - v{self.PROGRAM_VERSION}")
178178
self.root.geometry("1100x750")
179+
try:
180+
self.root.state('zoomed')
181+
except tk.TclError:
182+
pass
179183
self.root.configure(bg=self.CLR_BG_DARK)
180184

181185
# Initialize internal variables

0 commit comments

Comments
 (0)