SHA256
1
0
forked from pool/dialog
dialog/dialog-1.2-20121230.dif
Dr. Werner Fink c30b38afb2 Accepting request 334367 from home:pluskalm:branches:Base:System
- 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
2015-09-28 12:00:25 +00:00

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;
}
}