diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-11-10 19:29:12 +0100 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-11-10 19:29:12 +0100 |
commit | 475607826343340f509cf8a3f194b11e469ff8ad (patch) | |
tree | 9aee2368ec270c9adc83b1d8674e6449d20d4603 /src/fe-gtk/setup.c | |
parent | 5781cd0c44350907b65f855fcd22e338509e35b0 (diff) |
Explode gui_tray_flags
Diffstat (limited to 'src/fe-gtk/setup.c')
-rw-r--r-- | src/fe-gtk/setup.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/fe-gtk/setup.c b/src/fe-gtk/setup.c index 7f6e37ff..24e1cd4d 100644 --- a/src/fe-gtk/setup.c +++ b/src/fe-gtk/setup.c @@ -429,9 +429,16 @@ static const setting alert_settings[] = {ST_3OGGLE, N_("Blink task bar on:"), 0, 0, (void *)taskbarlist, 0}, {ST_3OGGLE, N_("Make a beep sound on:"), 0, 0, (void *)beeplist, 0}, - {ST_TOGGLE, N_("Enable system tray icon"), P_OFFINTNL(hex_gui_tray), 0, 0, 0}, {ST_TOGGLE, N_("Omit alerts when marked as being away"), P_OFFINTNL(hex_away_omit_alerts), 0, 0, 0}, + {ST_HEADER, N_("Tray Behavior"), 0, 0, 0}, + {ST_TOGGLE, N_("Enable system tray icon"), P_OFFINTNL(hex_gui_tray), 0, 0, 0}, + {ST_TOGGLE, N_("Minimize to tray"), P_OFFINTNL(hex_gui_tray_minimize), 0, 0, 0}, + {ST_TOGGLE, N_("Close to tray"), P_OFFINTNL(hex_gui_tray_close), 0, 0, 0}, +#ifndef WIN32 + {ST_TOGGLE, N_("Only show tray balloons when hidden or iconified"), P_OFFINTNL(hex_gui_tray_quiet), 0, 0, 0}, +#endif + {ST_HEADER, N_("Highlighted Messages"),0,0,0}, {ST_LABEL, N_("Highlighted messages are ones where your nickname is mentioned, but also:"), 0, 0, 0, 1}, |