aboutsummaryrefslogtreecommitdiff
path: root/launcher/ui/pages/modplatform/legacy_ftb
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2022-04-18 13:38:54 +0200
committerGitHub <noreply@github.com>2022-04-18 13:38:54 +0200
commitfd7745cbebf55f5bcfccc16500fff0e67a789169 (patch)
tree75e4a68449c9c3ca5a4a2aaca5468b9c05420e61 /launcher/ui/pages/modplatform/legacy_ftb
parentc348de96e44ed5deb31993cdf7ce2ab5306b3e88 (diff)
parentfcbf37f60fd872884a59fc11233e87e47029e1c9 (diff)
downloadPrismLauncher-fd7745cbebf55f5bcfccc16500fff0e67a789169.tar.gz
PrismLauncher-fd7745cbebf55f5bcfccc16500fff0e67a789169.tar.bz2
PrismLauncher-fd7745cbebf55f5bcfccc16500fff0e67a789169.zip
Merge pull request #442 from kthchew/fix/typos
Diffstat (limited to 'launcher/ui/pages/modplatform/legacy_ftb')
-rw-r--r--launcher/ui/pages/modplatform/legacy_ftb/ListModel.cpp4
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