Raise minimumHeight again to account for overlap issues on MacOS caused by Mac's Qt widget padding

This commit is contained in:
Miguel Jacq 2018-10-10 16:49:42 +11:00
parent 56e5c8b908
commit 85de803fda
No known key found for this signature in database
GPG Key ID: EEA4341C6D97A0B6

View File

@ -46,7 +46,7 @@ class OnionShareGui(QtWidgets.QMainWindow):
self.common = common
self.common.log('OnionShareGui', '__init__')
self.setMinimumWidth(820)
self.setMinimumHeight(620)
self.setMinimumHeight(650)
self.onion = onion
self.qtapp = qtapp