Skip to content

Commit

Permalink
feat: open in 1200x800 by default
Browse files Browse the repository at this point in the history
Signed-off-by: jdev082 <[email protected]>
  • Loading branch information
jdev082 committed Oct 31, 2024
1 parent 909694c commit a2a6c30
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ def __init__(self, *args, **kwargs):
stop_btn.triggered.connect(self.browser.stop)
navtb.addAction(stop_btn)

# Display Window
# Display Window and Set Size
self.resize(1200, 800)
self.show()

# Functions
Expand Down

0 comments on commit a2a6c30

Please sign in to comment.