1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 14:41:39 +00:00

Add option to place tab bar below main menu

This commit is contained in:
glubsy
2020-07-31 01:32:29 +02:00
parent 8fb82ae3d8
commit dd6ffe08d7
3 changed files with 12 additions and 4 deletions

View File

@@ -45,7 +45,7 @@ class Preferences(PreferencesBase):
self.recentResults = get("RecentResults", self.recentResults)
self.recentFolders = get("RecentFolders", self.recentFolders)
self.tabs_default_pos = get("TabsDefaultPosition", self.tabs_default_pos)
self.word_weighting = get("WordWeighting", self.word_weighting)
self.match_similar = get("MatchSimilar", self.match_similar)
self.ignore_small_files = get("IgnoreSmallFiles", self.ignore_small_files)
@@ -80,6 +80,7 @@ class Preferences(PreferencesBase):
self.recentResults = []
self.recentFolders = []
self.tabs_default_pos = False
self.word_weighting = True
self.match_similar = False
self.ignore_small_files = True
@@ -115,6 +116,7 @@ class Preferences(PreferencesBase):
set_("RecentResults", self.recentResults)
set_("RecentFolders", self.recentFolders)
set_("TabsDefaultPosition", self.tabs_default_pos)
set_("WordWeighting", self.word_weighting)
set_("MatchSimilar", self.match_similar)
set_("IgnoreSmallFiles", self.ignore_small_files)