diff options
author | James Booth <boothj5@gmail.com> | 2018-03-11 01:21:36 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2018-03-11 01:21:36 +0000 |
commit | 70c70fcdf999f2db3558ca0e47ab8f7f99159e38 (patch) | |
tree | 990188647c10c5fa7528964e5f651379410af982 | |
parent | d6e7f389d1c1009b7c1fe9fb7f01697b610028ea (diff) | |
download | profani-tty-70c70fcdf999f2db3558ca0e47ab8f7f99159e38.tar.gz |
Fix theme load max tab length
-rw-r--r-- | src/config/theme.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/theme.c b/src/config/theme.c index 769299d0..13f9cc2b 100644 --- a/src/config/theme.c +++ b/src/config/theme.c @@ -444,7 +444,7 @@ _load_preferences(void) if (g_key_file_has_key(theme, "ui", "statusbar.tablen", NULL)) { gint tab_len = g_key_file_get_integer(theme, "ui", "statusbar.tablen", NULL); - prefs_set_statusbartabs(tab_len); + prefs_set_statusbartablen(tab_len); } if (g_key_file_has_key(theme, "ui", "occupants.size", NULL)) { |