diff options
author | Benjamin Poirier <bpoirier@suse.de> | 2012-08-23 14:55:05 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2012-09-27 18:08:14 +0200 |
commit | 1d1e2caebbf1f4f25ad473e90650cdc9291fdd22 (patch) | |
tree | b6dd5a253abef0e91389e2ea113b72bd4439f538 /scripts/kconfig/lxdialog/dialog.h | |
parent | 537ddae75c0f41343928d39f308f3ca670f000a8 (diff) | |
download | talos-op-linux-1d1e2caebbf1f4f25ad473e90650cdc9291fdd22.tar.gz talos-op-linux-1d1e2caebbf1f4f25ad473e90650cdc9291fdd22.zip |
menuconfig: Extend dialog_textbox so that it can return to a scrolled position
We can now display other UI elements (menus) "on top" of a textbox and then
seemingly come back to it in the same state it was left.
Signed-off-by: Benjamin Poirier <bpoirier@suse.de>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/kconfig/lxdialog/dialog.h')
-rw-r--r-- | scripts/kconfig/lxdialog/dialog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/lxdialog/dialog.h b/scripts/kconfig/lxdialog/dialog.h index 35ca0286d105..2a01cdfae5a8 100644 --- a/scripts/kconfig/lxdialog/dialog.h +++ b/scripts/kconfig/lxdialog/dialog.h @@ -211,7 +211,7 @@ int dialog_yesno(const char *title, const char *prompt, int height, int width); int dialog_msgbox(const char *title, const char *prompt, int height, int width, int pause); int dialog_textbox(const char *title, const char *file, int height, int width, - int *keys); + int *keys, int *_vscroll, int *_hscroll); int dialog_menu(const char *title, const char *prompt, const void *selected, int *s_scroll); int dialog_checklist(const char *title, const char *prompt, int height, |