Fixed order of the counters

Previously had - numbers at the top and + at the bottom.
This feels like it makes more sense.
This commit is contained in:
Matt Lowe 2015-03-31 22:15:21 +02:00
parent 11d1d22da5
commit 2684397a1e

View file

@ -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 {