diff options
author | Geert Hauwaerts <geert@hauwaerts.be> | 2014-07-06 22:24:16 +0200 |
---|---|---|
committer | Geert Hauwaerts <geert@hauwaerts.be> | 2014-07-06 22:24:16 +0200 |
commit | bea5cb6d0264d70019b23e7c8941b2160d253bfc (patch) | |
tree | f9ce98bbd5f08ae167ecbc427730e045c5974640 /src/fe-common | |
parent | 8c1e7d9c176f060a36084a40f074e220753a6210 (diff) | |
download | irssi-bea5cb6d0264d70019b23e7c8941b2160d253bfc.zip |
Redraw the statusbar after reading the settings
I fixed a bug where the statusbar was not redrawn after reading the
settings.
Diffstat (limited to 'src/fe-common')
-rw-r--r-- | src/fe-common/core/fe-common-core.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fe-common/core/fe-common-core.c b/src/fe-common/core/fe-common-core.c index dce6890e..375e8062 100644 --- a/src/fe-common/core/fe-common-core.c +++ b/src/fe-common/core/fe-common-core.c @@ -463,7 +463,8 @@ void fe_common_core_finish_init(void) if (setup_changed) signal_emit("setup changed", 0); - autorun_startup(); + statusbar_redraw(NULL, TRUE); + autorun_startup(); autoconnect_servers(); } |