From d311db4b23a51be450b7a09e23f0d44932cb279a Mon Sep 17 00:00:00 2001 From: 0XFACE Date: Tue, 21 Oct 2025 13:52:14 -0300 Subject: [PATCH] Increase minimum window height to 800 pixels Fix overlapping text on the Receiving tab while the dialog box is opened --- desktop/onionshare/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/onionshare/main_window.py b/desktop/onionshare/main_window.py index d6f0d914..cc53946d 100644 --- a/desktop/onionshare/main_window.py +++ b/desktop/onionshare/main_window.py @@ -46,7 +46,7 @@ class MainWindow(QtWidgets.QMainWindow): # Initialize the window self.setMinimumWidth(1040) - self.setMinimumHeight(700) + self.setMinimumHeight(800) self.setWindowTitle("OnionShare") self.setWindowIcon(QtGui.QIcon(GuiCommon.get_resource_path("images/logo.png")))