From d41e99f31896b202f0e4cb9e16a25a2250b0840a Mon Sep 17 00:00:00 2001 From: lovetox Date: Wed, 29 Apr 2020 21:01:06 +0200 Subject: [PATCH] Change default tabs position to left This should users get accustomed to the UI changes we plan for 1.3 Also it hides the problems with the not scrollable tabs list because much more tabs fit the window --- gajim/common/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gajim/common/config.py b/gajim/common/config.py index fc421fc56..b2e80faa0 100644 --- a/gajim/common/config.py +++ b/gajim/common/config.py @@ -170,7 +170,7 @@ class Config: 'last_save_dir': [opt_str, ''], 'last_send_dir': [opt_str, ''], 'last_sounds_dir': [opt_str, ''], - 'tabs_position': [opt_str, 'top'], + 'tabs_position': [opt_str, 'left'], 'tabs_always_visible': [opt_bool, False, _('Show tab when only one conversation?')], 'tabs_border': [opt_bool, False, _('Show tabbed notebook border in chat windows?')], 'tabs_close_button': [opt_bool, True, _('Show close button in tab?')], -- GitLab