Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

kconfig: lxdialog: fix button color for blackbg theme

For MENUCONFIG_COLOR=blackbg, the text in inactive buttons is invisible
because both the foreground and background are black.

Change the foreground color to white and remove the highlighting.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

+1 -1
+1 -1
scripts/kconfig/lxdialog/util.c
··· 101 101 DLG_COLOR(button_key_active, COLOR_YELLOW, COLOR_RED, true); 102 102 DLG_COLOR(button_key_inactive, COLOR_RED, COLOR_BLACK, false); 103 103 DLG_COLOR(button_label_active, COLOR_WHITE, COLOR_RED, false); 104 - DLG_COLOR(button_label_inactive, COLOR_BLACK, COLOR_BLACK, true); 104 + DLG_COLOR(button_label_inactive, COLOR_WHITE, COLOR_BLACK, false); 105 105 106 106 DLG_COLOR(inputbox, COLOR_YELLOW, COLOR_BLACK, false); 107 107 DLG_COLOR(inputbox_border, COLOR_YELLOW, COLOR_BLACK, false);