Skip to content

Commit

Permalink
Fixing header bar
Browse files Browse the repository at this point in the history
  • Loading branch information
cdgriffith committed Jun 16, 2024
1 parent 8aef267 commit 26abedb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion FastFlix.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion fastflix/widgets/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down

0 comments on commit 26abedb

Please sign in to comment.