diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2018-10-05 03:36:56 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2018-10-05 03:50:38 +0200 |
| commit | f1e4d04d9e62174d8afa1662dc14d42dc8bb5012 (patch) | |
| tree | 9147214546d15e20219f7c66e674ea9563655aa6 /menuconfig.py | |
| parent | d044ee9041de0a4917854a48c90d975f7d1b1bc7 (diff) | |
menuconfig: Remove "Value for " prefix from input dialog titles
The prompt and type alone make it obvious, and it prevents many dialogs
from getting overly wide.
Diffstat (limited to 'menuconfig.py')
| -rwxr-xr-x | menuconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/menuconfig.py b/menuconfig.py index 5a4b2b1..4a03518 100755 --- a/menuconfig.py +++ b/menuconfig.py @@ -1382,7 +1382,7 @@ def _change_node(node): s = sc.str_value while True: - s = _input_dialog("Value for '{}' ({})".format( + s = _input_dialog("{} ({})".format( node.prompt[0], TYPE_TO_STR[sc.type]), s, _range_info(sc)) |
