From 6a49f5fe67de77828053c6a51459539356504a61 Mon Sep 17 00:00:00 2001 From: Raivis Dejus Date: Sun, 19 May 2024 13:06:48 +0300 Subject: [PATCH] Will make default app screen fit all columns --- buzz/widgets/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buzz/widgets/main_window.py b/buzz/widgets/main_window.py index a45e3597f..59e2b1593 100644 --- a/buzz/widgets/main_window.py +++ b/buzz/widgets/main_window.py @@ -53,7 +53,7 @@ def __init__(self, transcription_service: TranscriptionService): self.setWindowTitle(APP_NAME) self.setWindowIcon(QIcon(BUZZ_ICON_PATH)) - self.setMinimumSize(450, 400) + self.setMinimumSize(1240, 600) self.setAcceptDrops(True)