Merge pull request #896 from poixen/swap_life_order

Fixed order of the counters
This commit is contained in:
Zach 2015-03-31 22:41:41 -04:00
commit 60757af5dc

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 {