Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Apitzsch <git@apitzsch.eu>2020-07-29 18:53:03 +0300
committerlovetox <philipp@hoerist.com>2020-08-11 22:20:33 +0300
commit3360e83cd3f78de77b9227e954a7ec713548062c (patch)
tree8319374b0a9ff29a10916ea1179c5ad2f1495eec
parentfab96619dcfbd79151bb2302b6008af53a11b4b0 (diff)
Fix warning 'Theme Standard not found, fallback to default'
when new config is generated
-rw-r--r--gajim/common/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gajim/common/config.py b/gajim/common/config.py
index d559058fd..fe799d0db 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],