aiomixer: remove workaround for libcurses bug

This commit is contained in:
nia 2021-05-29 09:11:41 +00:00
parent 70294c72b4
commit 1b67abe48a
1 changed files with 1 additions and 7 deletions

View File

@ -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);