mirror of
https://github.com/weechat/weechat.git
synced 2026-07-09 11:13:12 +02:00
core: don't resort hotlist when signal "hotlist_changed" is sent
This commit is contained in:
@@ -2269,8 +2269,11 @@ gui_bar_item_signal_cb (const void *pointer, void *data,
|
||||
item = (const char *)pointer;
|
||||
if (item)
|
||||
{
|
||||
if (strcmp (item, "hotlist") == 0)
|
||||
if ((strcmp (item, "hotlist") == 0)
|
||||
&& (strcmp (signal, "hotlist_changed") != 0))
|
||||
{
|
||||
gui_hotlist_resort ();
|
||||
}
|
||||
gui_bar_item_update (item);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user