From 55e2e6a67475c7521a7eba1e08587501f75666ad Mon Sep 17 00:00:00 2001 From: dalthviz <16781833+dalthviz@users.noreply.github.com> Date: Wed, 24 Jul 2024 16:19:57 -0500 Subject: [PATCH] Application: Increase about dialog width to prevent cutting text on Windows --- spyder/plugins/application/widgets/about.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spyder/plugins/application/widgets/about.py b/spyder/plugins/application/widgets/about.py index 406b4a4ec40..62be57e26d7 100644 --- a/spyder/plugins/application/widgets/about.py +++ b/spyder/plugins/application/widgets/about.py @@ -285,7 +285,7 @@ def __init__(self, parent): bbox.accepted.connect(self.accept) # -- Style - size = (600, 460) if MAC else ((580, 450) if WIN else (610, 455)) + size = (600, 460) if MAC else ((585, 450) if WIN else (610, 455)) self.setFixedSize(*size) self.setStyleSheet(self._main_stylesheet)