mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
Make redrawing of item actually work
This commit is contained in:
parent
de626250b5
commit
d6b55c6d43
1 changed files with 5 additions and 2 deletions
|
|
@ -453,13 +453,16 @@ static void item_input(SBAR_ITEM_REC *item, int get_size_only)
|
|||
|
||||
static void read_settings(void)
|
||||
{
|
||||
const char *sep;
|
||||
if (active_entry != NULL)
|
||||
gui_entry_set_utf8(active_entry, term_type == TERM_TYPE_UTF8);
|
||||
|
||||
actlist_sort = settings_get_choice("actlist_sort");
|
||||
|
||||
if(g_strcmp0(actlist_separator, settings_get_str("actlist_separator")) != 0) {
|
||||
actlist_separator = settings_get_str("actlist_separator");
|
||||
sep = settings_get_str("actlist_separator");
|
||||
if(g_strcmp0(actlist_separator, sep) != 0) {
|
||||
g_free(actlist_separator);
|
||||
actlist_separator = g_strdup(sep);
|
||||
statusbar_items_redraw("act");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue