Skip to content

Commit 33165b4

Browse files
authored
Hotfix
- Fixed build script for older versions - Fixed startup on windows
1 parent 85f40d9 commit 33165b4

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

FF_Main_UI.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1205,7 +1205,7 @@ def menu_bar_icon(self, about_action, reopen_action):
12051205
menu_bar_icon = QSystemTrayIcon(self.Root_Window)
12061206

12071207
if platform == "win32" or platform == "cygwin":
1208-
menu_bar_icon.activated.connect(self.Root_Window.show())
1208+
menu_bar_icon.activated.connect(self.Root_Window.show)
12091209

12101210
# Icon
12111211
# On macOS

FF_Search.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,6 @@ def searching(self, data_name, data_name_specifier, data_consider_case, data_sim
760760
if not os.path.basename(name_file).split(".")[0].endswith(data_name):
761761
copy_found_path_set.remove(name_file)
762762

763-
764763
# Fuzzy search
765764
elif data_name_specifier == "is similar to:":
766765
for name_file in found_path_set:

0 commit comments

Comments
 (0)