Merge pull request #896 from poixen/swap_life_order
Fixed order of the counters
This commit is contained in:
commit
60757af5dc
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue