diff options
Diffstat (limited to 'scripts/kconfig/lxdialog')
-rw-r--r-- | scripts/kconfig/lxdialog/checklist.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/kconfig/lxdialog/checklist.c b/scripts/kconfig/lxdialog/checklist.c index b2a878c936d6..bcc6f19c3a35 100644 --- a/scripts/kconfig/lxdialog/checklist.c +++ b/scripts/kconfig/lxdialog/checklist.c | |||
@@ -41,7 +41,8 @@ static void print_item(WINDOW * win, int choice, int selected) | |||
41 | wmove(win, choice, check_x); | 41 | wmove(win, choice, check_x); |
42 | wattrset(win, selected ? dlg.check_selected.atr | 42 | wattrset(win, selected ? dlg.check_selected.atr |
43 | : dlg.check.atr); | 43 | : dlg.check.atr); |
44 | wprintw(win, "(%c)", item_is_tag('X') ? 'X' : ' '); | 44 | if (!item_is_tag(':')) |
45 | wprintw(win, "(%c)", item_is_tag('X') ? 'X' : ' '); | ||
45 | 46 | ||
46 | wattrset(win, selected ? dlg.tag_selected.atr : dlg.tag.atr); | 47 | wattrset(win, selected ? dlg.tag_selected.atr : dlg.tag.atr); |
47 | mvwaddch(win, choice, item_x, item_str()[0]); | 48 | mvwaddch(win, choice, item_x, item_str()[0]); |