Skip to content

Commit

Permalink
Merge pull request #107 from LianaHarris360/set-min-dimensions
Browse files Browse the repository at this point in the history
Sets minimum size for app window
  • Loading branch information
rtibbles authored Apr 17, 2023
2 parents 3fb423e + 9fe8f98 commit 0996f4b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/kolibri_app/view.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ def __init__(self, app, url=None, size=(1024, 768)):
self.current_url = None

self.view = wx.Frame(None, -1, APP_NAME, size=size)
self.view.SetMinSize((350, 400))

backend = html2.WebViewBackendDefault

Expand Down

0 comments on commit 0996f4b

Please sign in to comment.