Increase minimum window height to 800 pixels

Fix overlapping text on the Receiving tab while the dialog box is opened
This commit is contained in:
0XFACE 2025-10-21 13:52:14 -03:00 committed by GitHub
parent 2cee0508d1
commit d311db4b23
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -46,7 +46,7 @@ class MainWindow(QtWidgets.QMainWindow):
# Initialize the window # Initialize the window
self.setMinimumWidth(1040) self.setMinimumWidth(1040)
self.setMinimumHeight(700) self.setMinimumHeight(800)
self.setWindowTitle("OnionShare") self.setWindowTitle("OnionShare")
self.setWindowIcon(QtGui.QIcon(GuiCommon.get_resource_path("images/logo.png"))) self.setWindowIcon(QtGui.QIcon(GuiCommon.get_resource_path("images/logo.png")))