Module Name: src Committed By: nia Date: Sat May 29 09:11:41 UTC 2021
Modified Files: src/usr.bin/aiomixer: draw.c Log Message: aiomixer: remove workaround for libcurses bug To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/usr.bin/aiomixer/draw.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/usr.bin/aiomixer/draw.c diff -u src/usr.bin/aiomixer/draw.c:1.6 src/usr.bin/aiomixer/draw.c:1.7 --- src/usr.bin/aiomixer/draw.c:1.6 Sat May 8 14:49:13 2021 +++ src/usr.bin/aiomixer/draw.c Sat May 29 09:11:41 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: draw.c,v 1.6 2021/05/08 14:49:13 nia Exp $ */ +/* $NetBSD: draw.c,v 1.7 2021/05/29 09:11:41 nia Exp $ */ /*- * Copyright (c) 2021 The NetBSD Foundation, Inc. * All rights reserved. @@ -364,13 +364,7 @@ create_widgets(struct aiomixer *aio) control->widget_y = class->height; class->height += control->height; } -#ifdef notyet - /* - * NetBSD curses wresize() bounds the pad to the height of - * the screen even though it's already taller. Probably a bug. - */ wresize(class->widgetpad, class->height, getmaxx(stdscr)); -#endif } aio->last_max_x = getmaxx(stdscr);