diff options
author | tomaw <tom@tomaw.net> | 2014-08-08 18:57:50 +0100 |
---|---|---|
committer | tomaw <tom@tomaw.net> | 2014-08-08 18:57:50 +0100 |
commit | 2346d3b62fd4ce5211e57b67263c046e6ea6db59 (patch) | |
tree | 757fe39899d689fa371a37a17eca0f26006cc53c /src | |
parent | 22d4dc729e87714739babe829de6e44eb0f1bdb4 (diff) | |
parent | 6a5f04b26a0da59a94a6902ddcb42b730ecc1def (diff) | |
download | irssi-2346d3b62fd4ce5211e57b67263c046e6ea6db59.zip |
Merge pull request #109 from cpbills/master
Fix right aligned statusbar item redrawing
Diffstat (limited to 'src')
-rw-r--r-- | src/fe-text/statusbar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-text/statusbar.c b/src/fe-text/statusbar.c index 5453c2d5..ef5abc55 100644 --- a/src/fe-text/statusbar.c +++ b/src/fe-text/statusbar.c @@ -355,7 +355,7 @@ void statusbar_item_redraw(SBAR_ITEM_REC *item) if (item->max_size != item->size) { /* item wants a new size - we'll need to redraw 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; |