From 636effbc9232cf3805365e8715dea71d8860030a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Apitzsch?= <git@apitzsch.eu> Date: Wed, 29 Jul 2020 17:53:03 +0200 Subject: [PATCH] Fix warning 'Theme Standard not found, fallback to default' when new config is generated --- 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 d559058fdd..fe799d0db7 100644 --- a/gajim/common/config.py +++ b/gajim/common/config.py @@ -91,7 +91,7 @@ class Config: 'iconset': [opt_str, DEFAULT_ICONSET, '', True], 'use_transports_iconsets': [opt_bool, True, '', True], 'collapsed_rows': [opt_str, '', _('List of rows (accounts and groups) that are collapsed (space separated).'), True], - 'roster_theme': [opt_str, _('default'), '', True], + 'roster_theme': [opt_str, 'default', '', True], 'mergeaccounts': [opt_bool, False, '', True], 'sort_by_show_in_roster': [opt_bool, True, '', True], 'sort_by_show_in_muc': [opt_bool, False, '', True], -- GitLab