From 3b49cbf73bb6b04937272470114e8e0493a7033f Mon Sep 17 00:00:00 2001 From: tooomm Date: Mon, 9 Dec 2024 02:23:27 +0100 Subject: [PATCH] Rename label (#5232) --- cockatrice/src/game/zones/view_zone_widget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cockatrice/src/game/zones/view_zone_widget.cpp b/cockatrice/src/game/zones/view_zone_widget.cpp index e8276898b..06dd2f139 100644 --- a/cockatrice/src/game/zones/view_zone_widget.cpp +++ b/cockatrice/src/game/zones/view_zone_widget.cpp @@ -192,7 +192,7 @@ void ZoneViewWidget::retranslateUi() { // We can't change the strings after they're put into the QComboBox, so this is our workaround int oldIndex = groupBySelector.currentIndex(); groupBySelector.clear(); - groupBySelector.addItem(tr("Group by ---"), CardList::NoSort); + groupBySelector.addItem(tr("Ungrouped"), CardList::NoSort); groupBySelector.addItem(tr("Group by Type"), CardList::SortByMainType); groupBySelector.addItem(tr("Group by Mana Value"), CardList::SortByManaValue); groupBySelector.addItem(tr("Group by Color"), CardList::SortByColorGrouping); @@ -202,7 +202,7 @@ void ZoneViewWidget::retranslateUi() { int oldIndex = sortBySelector.currentIndex(); sortBySelector.clear(); - sortBySelector.addItem(tr("Sort by ---"), CardList::NoSort); + sortBySelector.addItem(tr("Unsorted"), CardList::NoSort); sortBySelector.addItem(tr("Sort by Name"), CardList::SortByName); sortBySelector.addItem(tr("Sort by Type"), CardList::SortByType); sortBySelector.addItem(tr("Sort by Mana Cost"), CardList::SortByManaCost);