diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-22 18:59:45 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-22 18:59:45 +0200 |
commit | bc4fb2fd0ef60e39cc3eb331378672a8a04cb30a (patch) | |
tree | 7ee5fbf4da9a0eb8092c09d979d84f073c628385 /src/fe-gtk/setup.c | |
parent | f5338e014aaf90fdf58b03313be9a7e32710d335 (diff) |
Fix user count options
Diffstat (limited to 'src/fe-gtk/setup.c')
-rw-r--r-- | src/fe-gtk/setup.c | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/src/fe-gtk/setup.c b/src/fe-gtk/setup.c index 47b93479..bbdefb9a 100644 --- a/src/fe-gtk/setup.c +++ b/src/fe-gtk/setup.c @@ -284,7 +284,8 @@ static const setting userlist_settings[] = {ST_HEADER, N_("User List"),0,0,0}, {ST_TOGGLE, N_("Show hostnames in user list"), P_OFFINTNL(hex_gui_ulist_show_hosts), 0, 0, 0}, {ST_TOGGLE, N_("Use the Text box font and colors"), P_OFFINTNL(hex_gui_ulist_style),0,0,0}, - {ST_TOGGLE, N_("Show icons instead of text symbols"), P_OFFINTNL(hex_gui_ulist_icons), 0, 0, 0}, + {ST_TOGGLE, N_("Show icons instead for user modes"), P_OFFINTNL(hex_gui_ulist_icons), 0, 0, 0}, + {ST_TOGGLE, N_("Show user count in channels"), P_OFFINTNL(hex_gui_ulist_count), 0, 0, 0}, /* {ST_TOGGLE, N_("Resizable user list"), P_OFFINTNL(hex_gui_ulist_resizable),0,0,0},*/ {ST_MENU, N_("User list sorted by:"), P_OFFINTNL(hex_gui_ulist_sort), 0, ulmenutext, 0}, {ST_MENU, N_("Show user list at:"), P_OFFINTNL(hex_gui_ulist_pos), 0, ulpos, 1}, @@ -2202,29 +2203,31 @@ setup_apply (struct hexchatprefs *pr) if (DIFF (hex_gui_lang)) noapply = TRUE; #endif - if (DIFF (hex_gui_ulist_resizable)) - noapply = TRUE; if (DIFF (hex_gui_input_nick)) noapply = TRUE; if (DIFF (hex_gui_lagometer)) noapply = TRUE; - if (DIFF (hex_gui_throttlemeter)) + if (DIFF (hex_gui_tab_icons)) noapply = TRUE; - if (DIFF (hex_gui_ulist_show_hosts)) + if (DIFF (hex_gui_tab_server)) noapply = TRUE; if (DIFF (hex_gui_tab_small)) noapply = TRUE; if (DIFF (hex_gui_tab_sort)) noapply = TRUE; - if (DIFF (hex_gui_ulist_icons)) + if (DIFF (hex_gui_tab_trunc)) noapply = TRUE; - if (DIFF (hex_gui_tab_server)) + if (DIFF (hex_gui_throttlemeter)) noapply = TRUE; - if (DIFF (hex_gui_ulist_style)) + if (DIFF (hex_gui_ulist_count)) noapply = TRUE; - if (DIFF (hex_gui_tab_trunc)) + if (DIFF (hex_gui_ulist_icons)) noapply = TRUE; - if (DIFF (hex_gui_tab_icons)) + if (DIFF (hex_gui_ulist_resizable)) + noapply = TRUE; + if (DIFF (hex_gui_ulist_show_hosts)) + noapply = TRUE; + if (DIFF (hex_gui_ulist_style)) noapply = TRUE; if (DIFF (hex_gui_tab_dots)) |