1
0
mirror of https://github.com/irssi/irssi.git synced 2024-11-03 04:27:19 -05:00

Merge pull request #109 from cpbills/master

Fix right aligned statusbar item redrawing
This commit is contained in:
tomaw 2014-08-08 18:57:50 +01:00
commit 2346d3b62f

View File

@ -355,7 +355,7 @@ void statusbar_item_redraw(SBAR_ITEM_REC *item)
if (item->max_size != item->size) { if (item->max_size != item->size) {
/* item wants a new size - we'll need to redraw /* item wants a new size - we'll need to redraw
the statusbar to see if this is allowed */ the statusbar to see if this is allowed */
statusbar_redraw(item->bar, FALSE); statusbar_redraw(item->bar, item->config->right_alignment);
} }
active_win = old_active_win; active_win = old_active_win;