From: "Maurizio Galli (MauG)" Date: Thu, 24 Oct 2019 15:01:26 +0800 Subject: [PATCH] set use-hederbar to False instead of None Needed for the window layout settings to work correctly --- catfish_lib/CatfishSettings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catfish_lib/CatfishSettings.py b/catfish_lib/CatfishSettings.py index 6b70eaa..54c5de3 100644 --- a/catfish_lib/CatfishSettings.py +++ b/catfish_lib/CatfishSettings.py @@ -21,7 +21,7 @@ default_settings_file = os.path.join(os.getenv('HOME'), '.config/catfish/catfish.rc') default_settings = { - 'use-headerbar': None, + 'use-headerbar': True, 'show-hidden-files': False, 'show-sidebar': False, 'close-after-select': False,