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 3cf36c4531
commit ff00007db3

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