* help.c (interactive_display): User straight widget order.

This commit is contained in:
Pavel Roskin 2003-09-12 22:16:32 +00:00
parent bad1582e06
commit 5373948a01
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,7 @@
2003-09-12 Pavel Roskin <proski@gnu.org>
* help.c (interactive_display): User straight widget order.
* complete.c (complete_engine): Don't need DLG_REVERSE.
* widget.c (show_hist): Likewise.
* view.c (view): User straight widget order.

View File

@ -792,7 +792,7 @@ interactive_display (char *filename, char *node)
whelp =
create_dlg (0, 0, help_lines + 4, HELP_WINDOW_WIDTH + 4,
dialog_colors, help_callback, "[Help]", _("Help"),
DLG_TRYUP | DLG_CENTER | DLG_WANT_TAB | DLG_REVERSE);
DLG_TRYUP | DLG_CENTER | DLG_WANT_TAB);
selected_item = search_string_node (main_node, STRING_LINK_START) - 1;
currentpoint = startpoint = main_node + 1;
@ -809,8 +809,8 @@ interactive_display (char *filename, char *node)
md = mousedispatch_new (1, 1, help_lines, HELP_WINDOW_WIDTH - 2);
add_widget (whelp, help_bar);
add_widget (whelp, md);
add_widget (whelp, help_bar);
define_label_data (whelp, 1, _("Help"), (buttonbarfn) help_help_cmd,
whelp);