Skip to content

Commit

Permalink
Limit min window height to 130 px
Browse files Browse the repository at this point in the history
  • Loading branch information
pozitronik committed Feb 25, 2024
1 parent a761d00 commit 96b4faa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sinner/gui/GUIForm.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def __init__(self, parameters: Namespace):
self.GUIWindow.iconbitmap(default=get_app_dir("sinner/gui/icons/sinner.ico")) # the taskbar icon may not be changed due tkinter limitations
# self.GUIWindow.iconphoto(True, PhotoImage(file=get_app_dir("sinner/gui/icons/sinner_64.png"))) # the taskbar icon may not be changed due tkinter limitations
self.GUIWindow.title('sinner controls')
self.GUIWindow.minsize(500, 0)
self.GUIWindow.minsize(500, 130)
self.GUIWindow.protocol('WM_DELETE_WINDOW', lambda: on_player_window_close())

def on_player_window_close() -> None:
Expand Down

0 comments on commit 96b4faa

Please sign in to comment.