From 2684397a1e55d3470e77911d855d4241fa31ed19 Mon Sep 17 00:00:00 2001 From: Matt Lowe Date: Tue, 31 Mar 2015 22:15:21 +0200 Subject: [PATCH] Fixed order of the counters Previously had - numbers at the top and + at the bottom. This feels like it makes more sense. --- cockatrice/src/abstractcounter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/src/abstractcounter.cpp b/cockatrice/src/abstractcounter.cpp index b9debae4..651ccd06 100644 --- a/cockatrice/src/abstractcounter.cpp +++ b/cockatrice/src/abstractcounter.cpp @@ -23,7 +23,7 @@ AbstractCounter::AbstractCounter(Player *_player, int _id, const QString &_name, connect(aSet, SIGNAL(triggered()), this, SLOT(setCounter())); menu->addAction(aSet); menu->addSeparator(); - for (int i = -10; i <= 10; ++i) + for (int i = 10; i >= -10; --i) if (i == 0) menu->addSeparator(); else {