ui: remove maximum window size

This commit is contained in:
Peter F. Patel-Schneider 2020-06-06 15:42:37 -04:00 committed by Filipe Laíns
parent 579b09619b
commit 784661bbc0
1 changed files with 1 additions and 3 deletions

View File

@ -346,9 +346,7 @@ def _create(delete_action):
geometry = Gdk.Geometry()
geometry.min_width = 600
geometry.min_height = 320
geometry.max_width = 1000
geometry.max_height = 600
window.set_geometry_hints(vbox, geometry, Gdk.WindowHints.MIN_SIZE | Gdk.WindowHints.MAX_SIZE)
window.set_geometry_hints(vbox, geometry, Gdk.WindowHints.MIN_SIZE)
window.set_position(Gtk.WindowPosition.CENTER)
style = window.get_style_context()