mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-26 11:12:19 -05:00
Fix nick box setting
This commit is contained in:
parent
fd47409e76
commit
f5338e014a
@ -715,6 +715,7 @@ load_config (void)
|
||||
prefs.hex_flood_msg_time = 5;
|
||||
prefs.hex_flood_ctcp_time = 30;
|
||||
prefs.hex_flood_ctcp_num = 5;
|
||||
prefs.hex_gui_input_nick = 1;
|
||||
prefs.hex_gui_topicbar = 1;
|
||||
prefs.hex_gui_lagometer = 1;
|
||||
prefs.hex_gui_throttlemeter = 1;
|
||||
|
@ -3046,7 +3046,7 @@ mg_create_topwindow (session *sess)
|
||||
if (!prefs.hex_gui_ulist_buttons)
|
||||
gtk_widget_hide (sess->gui->button_box);
|
||||
|
||||
if (prefs.hex_gui_input_nick)
|
||||
if (!prefs.hex_gui_input_nick)
|
||||
gtk_widget_hide (sess->gui->nick_box);
|
||||
|
||||
mg_decide_userlist (sess, FALSE);
|
||||
@ -3149,7 +3149,7 @@ mg_create_tabwindow (session *sess)
|
||||
if (!prefs.hex_gui_ulist_buttons)
|
||||
gtk_widget_hide (sess->gui->button_box);
|
||||
|
||||
if (prefs.hex_gui_input_nick)
|
||||
if (!prefs.hex_gui_input_nick)
|
||||
gtk_widget_hide (sess->gui->nick_box);
|
||||
|
||||
mg_place_userlist_and_chanview (sess->gui);
|
||||
|
Loading…
Reference in New Issue
Block a user