forked from pool/dialog
c30b38afb2
- Update to 1.2-20150920 * decrease table value for minimum number of arguments for the widgets which use --no-items option * update configure macros: + use $SHELL consistently, deprecate non-POSIX shell + PKG_CONFIG may simply be unset - fix + add option to allow changing ABI version, from ncurses6. * fixes for two autoconf macros, CF_ADD_INCDIR and CF_NCURSES_CONFIG from work on ncurses. * build-fix for NetBSD curses - Fix typo in previous changelog entry - Update to 1.2-20150513 OBS-URL: https://build.opensuse.org/request/show/334367 OBS-URL: https://build.opensuse.org/package/show/Base:System/dialog?expand=0&rev=34
16 lines
442 B
Plaintext
16 lines
442 B
Plaintext
Index: util.c
|
|
===================================================================
|
|
--- util.c.orig
|
|
+++ util.c
|
|
@@ -2136,8 +2136,10 @@ dlg_move_window(WINDOW *win, int height,
|
|
#ifdef HAVE_COLOR
|
|
if (p->shadow != 0) {
|
|
if (dialog_state.use_shadow) {
|
|
+ (void) wresize(p->shadow, height, width);
|
|
(void) mvwin(p->shadow, y + SHADOW_ROWS, x + SHADOW_COLS);
|
|
} else {
|
|
+ delwin(p->shadow);
|
|
p->shadow = 0;
|
|
}
|
|
}
|