From 29e1ef97fa1f20b580fb7d74f170c39411adca1a Mon Sep 17 00:00:00 2001 From: tooomm Date: Sun, 8 Dec 2024 17:20:21 +0100 Subject: [PATCH] Rename label --- 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);