diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2003-12-31 16:00:20 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2003-12-31 16:00:20 +0000 |
commit | fd3e94070ae65c5a7e39fa95a72f0e30d374c8b4 (patch) | |
tree | 6c9535c87fed7cc4f4a305a0c7619ec8c52cec60 /src/gui/curses/gui-display.c | |
parent | 0708f1a571119ad28b810bf519f7a8d0f2ab3c24 (diff) | |
download | weechat-fd3e94070ae65c5a7e39fa95a72f0e30d374c8b4.zip |
When private window is created (another user is talking), WeeChat does not switch to this window
Diffstat (limited to 'src/gui/curses/gui-display.c')
-rw-r--r-- | src/gui/curses/gui-display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/curses/gui-display.c b/src/gui/curses/gui-display.c index ed0fdc53e..d30c5e6fa 100644 --- a/src/gui/curses/gui-display.c +++ b/src/gui/curses/gui-display.c @@ -1395,7 +1395,7 @@ gui_init () gui_init_colors (); /* create a new window */ - gui_current_window = gui_window_new (NULL, NULL /*0, 0, COLS, LINES*/); + gui_current_window = gui_window_new (NULL, NULL, 1 /*0, 0, COLS, LINES*/); signal (SIGWINCH, gui_curses_resize_handler); |