diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2014-05-13 21:35:02 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2014-05-18 11:02:56 +0200 |
commit | 05ba450c3b58c095b1e4ed206c25654f29a33b5a (patch) | |
tree | f6df52f53a4e3149b3d214edd212fb8f8249d1c6 /src/custom.c | |
parent | 5eea05a2033c479c74ab70d77dc0a0d31233c59d (diff) | |
download | calcurse-05ba450c3b58c095b1e4ed206c25654f29a33b5a.zip |
Reduce flicker when resizing in option menus
Do not update the main windows when resizing the terminal in the general
options menu or in the notification options menu.
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/custom.c')
-rw-r--r-- | src/custom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/custom.c b/src/custom.c index 2b309a2..9bf8905 100644 --- a/src/custom.c +++ b/src/custom.c @@ -802,7 +802,7 @@ void custom_general_config(void) if (resize) { resize = 0; - wins_reset(); + wins_reset_noupdate(); listbox_resize(&lb, 0, 0, notify_bar() ? row - 3 : row - 2, col); listbox_draw_deco(&lb); delwin(win[STA].p); |