From 26abedb5d2609d348ccccd52fb31a47e158d5272 Mon Sep 17 00:00:00 2001 From: Chris Griffith Date: Sun, 16 Jun 2024 10:09:19 -0500 Subject: [PATCH] Fixing header bar --- FastFlix.nsi | 2 +- fastflix/widgets/container.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/FastFlix.nsi b/FastFlix.nsi index ad5c0c1d..02fff751 100644 --- a/FastFlix.nsi +++ b/FastFlix.nsi @@ -48,7 +48,7 @@ InstallDirRegKey HKLM "Software\FastFlix" "Install_Dir" Function .onInit ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\FastFlix" "UninstallString" ${If} $0 != "" - Messagebox MB_OK|MB_ICONINFORMATION "You will now be prompted to first uninstall the previous version of FastFlix" + Messagebox MB_OK|MB_ICONINFORMATION "You will now be prompted to first uninstall the previous version of FastFlix. Please ensure it is not currently running!" ExecWait '$0 _?=$INSTDIR' ${EndIf} FunctionEnd diff --git a/fastflix/widgets/container.py b/fastflix/widgets/container.py index 9198701a..160c495f 100644 --- a/fastflix/widgets/container.py +++ b/fastflix/widgets/container.py @@ -163,7 +163,7 @@ def si(self, widget): def init_menu(self): menubar = self.menuBar() menubar.setNativeMenuBar(False) - menubar.setFixedWidth(260) + menubar.setFixedWidth(360) menubar.setStyleSheet("font-size: 14px") file_menu = menubar.addMenu(t("File"))