CUserMenuSetup: Activate alphanumeric sort option

Origin commit data
------------------
Commit: 3318812fbc
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2014-01-04 (Sat, 04 Jan 2014)
This commit is contained in:
Michael Liebmann
2014-01-04 01:20:30 +01:00
parent b93a3da743
commit f93b90c345

View File

@@ -132,7 +132,7 @@ int CUserMenuSetup::showSetup()
snprintf(text,max_char,"%d.",item+1);
text[max_char-1]=0;// terminate for sure
int count = (g_settings.recording_type != CNeutrinoApp::RECORDING_OFF) ? USERMENU_ITEM_OPTION_COUNT : USERMENU_ITEM_OPTION_COUNT - 1;
ums->addItem(new CMenuOptionChooser(text, &g_settings.usermenu[button][item], USERMENU_ITEM_OPTIONS, count,true, NULL, CRCInput::RC_nokey, "", true ));
ums->addItem(new CMenuOptionChooser(text, &g_settings.usermenu[button][item], USERMENU_ITEM_OPTIONS, count,true, NULL, CRCInput::RC_nokey, "", true, true));
}
int res = ums->exec(NULL, "");