diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2009-02-26 15:21:32 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2009-02-26 15:21:32 +0100 |
commit | 8cc03f939d4abc0149e2c3d402e1e1b3e09e8dd1 (patch) | |
tree | c3fd04b4d3a0c2984ec48eaa84c8e225d2d68296 /src/gui/gtk | |
parent | a796188fc828047333be07cf7cf7ba1167752e39 (diff) | |
download | weechat-8cc03f939d4abc0149e2c3d402e1e1b3e09e8dd1.zip |
Fix "/window refresh" (key ctrl+L): force curses refresh (was broken by previous commit for terminal resize)
Diffstat (limited to 'src/gui/gtk')
-rw-r--r-- | src/gui/gtk/gui-gtk-window.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/gtk/gui-gtk-window.c b/src/gui/gtk/gui-gtk-window.c index aee7b046d..627448c2e 100644 --- a/src/gui/gtk/gui-gtk-window.c +++ b/src/gui/gtk/gui-gtk-window.c @@ -778,8 +778,10 @@ gui_window_switch_right (struct t_gui_window *window) */ void -gui_window_refresh_screen () +gui_window_refresh_screen (int full_refresh) { + (void) full_refresh; + /* TODO: write this function for Gtk */ } |