From 03829a7e6efe59d9679566908ce30548c5a11734 Mon Sep 17 00:00:00 2001 From: Andrew Borodin Date: Mon, 17 Sep 2012 15:09:13 +0400 Subject: [PATCH] Don't apply DLG_REVERSE flag to the listbox window ...since this dialog contains single widget. Signed-off-by: Andrew Borodin --- lib/widget/listbox-window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/widget/listbox-window.c b/lib/widget/listbox-window.c index 9aa77577a..f3e494e7c 100644 --- a/lib/widget/listbox-window.c +++ b/lib/widget/listbox-window.c @@ -113,7 +113,7 @@ create_listbox_window_centered (int center_y, int center_x, int lines, int cols, listbox->dlg = create_dlg (TRUE, ypos, xpos, lines + space, cols + space, - listbox_colors, NULL, NULL, help, title, DLG_REVERSE | DLG_TRYUP); + listbox_colors, NULL, NULL, help, title, DLG_TRYUP); listbox->list = listbox_new (2, 2, lines, cols, FALSE, NULL); add_widget (listbox->dlg, listbox->list);