1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-07 12:54:00 +00:00

Sort using ciLess, not ciEqual

This commit is contained in:
scrawl 2014-06-14 20:25:44 +02:00
parent 88f8f25ffa
commit 1adb81abd0

View File

@ -406,7 +406,7 @@ namespace MWDialogue
win->setServices (windowServices);
// sort again, because the previous sort was case-sensitive
keywordList.sort(Misc::StringUtils::ciEqual);
keywordList.sort(Misc::StringUtils::ciLess);
win->setKeywords(keywordList);
mChoice = choice;