libnxwidgets: Fix default text colors in NxWidgets::CListBox

This commit is contained in:
Petteri Aimonen 2016-09-22 11:50:03 -06:00 committed by Gregory Nutt
parent c450feed48
commit 5ea0785c16

View File

@ -143,8 +143,8 @@ CListBox::~CListBox(void)
void CListBox::addOption(const CNxString &text, const uint32_t value)
{
addOption(text, value,
getShadowEdgeColor(), getBackgroundColor(),
getShadowEdgeColor(), getHighlightColor());
getEnabledTextColor(), getBackgroundColor(),
getSelectedTextColor(), getSelectedBackgroundColor());
}
/**