diff options
author | 2009-08-13 16:48:43 +0000 | |
---|---|---|
committer | 2009-08-13 16:48:43 +0000 | |
commit | d26f38ec0f8feca41d118ad12ebb534b43abd014 (patch) | |
tree | d83ef2839fc02cc9c472c508155999d7bf54b93f /usr.bin/tmux/window-copy.c | |
parent | In pmap_pte_flush flush the icache before the dcache, as is done elsewhere. (diff) | |
download | wireguard-openbsd-d26f38ec0f8feca41d118ad12ebb534b43abd014.tar.xz wireguard-openbsd-d26f38ec0f8feca41d118ad12ebb534b43abd014.zip |
Redraw the screen after resizing.
Diffstat (limited to 'usr.bin/tmux/window-copy.c')
-rw-r--r-- | usr.bin/tmux/window-copy.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/window-copy.c b/usr.bin/tmux/window-copy.c index 4c6b3e6a839..204463675d1 100644 --- a/usr.bin/tmux/window-copy.c +++ b/usr.bin/tmux/window-copy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: window-copy.c,v 1.16 2009/08/08 15:57:49 nicm Exp $ */ +/* $OpenBSD: window-copy.c,v 1.17 2009/08/13 16:48:43 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -160,6 +160,7 @@ window_copy_resize(struct window_pane *wp, u_int sx, u_int sy) window_copy_write_lines(wp, &ctx, 0, screen_size_y(s) - 1); screen_write_stop(&ctx); window_copy_update_selection(wp); + window_copy_redraw_screen(wp); } void |