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/gtk/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/gtk/gui-display.c')
-rw-r--r-- | src/gui/gtk/gui-display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/gtk/gui-display.c b/src/gui/gtk/gui-display.c index 29c3a4690..ca183b3e7 100644 --- a/src/gui/gtk/gui-display.c +++ b/src/gui/gtk/gui-display.c @@ -625,7 +625,7 @@ gui_init () gtk_widget_show_all (gtk_main_window); /* 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*/); /* TODO: set gui_ready to 1 when Gtk display functions will be ok */ gui_ready = 1; |