diff options
author | Kenneth Chew <kenneth.c0@protonmail.com> | 2022-04-17 17:58:51 -0400 |
---|---|---|
committer | Kenneth Chew <kenneth.c0@protonmail.com> | 2022-04-17 17:58:51 -0400 |
commit | fcbf37f60fd872884a59fc11233e87e47029e1c9 (patch) | |
tree | cbb532e44528cf02d3c46d095afa571ec73023fb /launcher/ui/pages/modplatform/legacy_ftb | |
parent | 56ce7f5dcd5b6aa89ac23ad80c2e7ba058bc256d (diff) | |
download | PrismLauncher-fcbf37f60fd872884a59fc11233e87e47029e1c9.tar.gz PrismLauncher-fcbf37f60fd872884a59fc11233e87e47029e1c9.tar.bz2 PrismLauncher-fcbf37f60fd872884a59fc11233e87e47029e1c9.zip |
Fix typos and inconsistent capitalization in sort options
Diffstat (limited to 'launcher/ui/pages/modplatform/legacy_ftb')
-rw-r--r-- | launcher/ui/pages/modplatform/legacy_ftb/ListModel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/ui/pages/modplatform/legacy_ftb/ListModel.cpp b/launcher/ui/pages/modplatform/legacy_ftb/ListModel.cpp index 9c46e887..63b944c4 100644 --- a/launcher/ui/pages/modplatform/legacy_ftb/ListModel.cpp +++ b/launcher/ui/pages/modplatform/legacy_ftb/ListModel.cpp @@ -16,8 +16,8 @@ namespace LegacyFTB { FilterModel::FilterModel(QObject *parent) : QSortFilterProxyModel(parent) { currentSorting = Sorting::ByGameVersion; - sortings.insert(tr("Sort by name"), Sorting::ByName); - sortings.insert(tr("Sort by game version"), Sorting::ByGameVersion); + sortings.insert(tr("Sort by Name"), Sorting::ByName); + sortings.insert(tr("Sort by Game Version"), Sorting::ByGameVersion); } bool FilterModel::lessThan(const QModelIndex &left, const QModelIndex &right) const |