summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-06-28 17:43:53 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-06-28 17:43:53 +0000
commit77b72271c888a1d7ce9b222ef247f67aac1c5331 (patch)
tree220e6af2924954effed95bf5ab5025dd612810b7
parent308c1347b1115b2ae15a94e23ebe829baaa5c5ff (diff)
downloadirssi-77b72271c888a1d7ce9b222ef247f67aac1c5331.zip
when theme is changed, it should print the message to status window, not to active window..
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1585 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r--src/fe-common/core/themes.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fe-common/core/themes.c b/src/fe-common/core/themes.c
index de9b6dee..b5b3fd3f 100644
--- a/src/fe-common/core/themes.c
+++ b/src/fe-common/core/themes.c
@@ -1102,9 +1102,9 @@ static void change_theme(const char *name, int verbose)
if (rec != NULL) {
current_theme = rec;
if (verbose) {
- printformat_window(active_win, MSGLEVEL_CLIENTNOTICE,
- TXT_THEME_CHANGED,
- rec->name, rec->path);
+ printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE,
+ TXT_THEME_CHANGED,
+ rec->name, rec->path);
}
} else if (verbose) {
printformat(NULL, NULL, MSGLEVEL_CLIENTERROR,