mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-01-21 09:03:25 -08:00
Merge pull request #896 from poixen/swap_life_order
Fixed order of the counters
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user