summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-01-16 17:58:25 -0500
committerGravatar GitHub2018-01-16 17:58:25 -0500
commit7338f089f8a0e072c9e0a85180ed93dfd1fa773d (patch)
tree4a6ed11c695e3ee5804dfee3f4466b64ffa87f43 /src
parentMerge pull request #46 from FearlessTobi/patch-2 (diff)
parentUpdate game_list.cpp (diff)
downloadyuzu-7338f089f8a0e072c9e0a85180ed93dfd1fa773d.tar.gz
yuzu-7338f089f8a0e072c9e0a85180ed93dfd1fa773d.tar.xz
yuzu-7338f089f8a0e072c9e0a85180ed93dfd1fa773d.zip
Merge pull request #43 from N00byKing/3052
Implement Pull #3052 from citra: Correct spelling of searchfield in comment
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/game_list.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/game_list.cpp b/src/yuzu/game_list.cpp
index 532c4ae63..679c89828 100644
--- a/src/yuzu/game_list.cpp
+++ b/src/yuzu/game_list.cpp
@@ -174,7 +174,7 @@ void GameList::onTextChanged(const QString& newText) {
174 child_file->data(GameListItemPath::ProgramIdRole).toString().toLower(); 174 child_file->data(GameListItemPath::ProgramIdRole).toString().toLower();
175 175
176 // Only items which filename in combination with its title contains all words 176 // Only items which filename in combination with its title contains all words
177 // that are in the searchfiel will be visible in the gamelist 177 // that are in the searchfield will be visible in the gamelist
178 // The search is case insensitive because of toLower() 178 // The search is case insensitive because of toLower()
179 // I decided not to use Qt::CaseInsensitive in containsAllWords to prevent 179 // I decided not to use Qt::CaseInsensitive in containsAllWords to prevent
180 // multiple conversions of edit_filter_text for each game in the gamelist 180 // multiple conversions of edit_filter_text for each game in the gamelist