inputs won't hang after devMode tap/untap

This commit is contained in:
Maxmtg
2013-05-28 08:31:15 +00:00
parent 081879bca4
commit 8a1b422ca7

View File

@@ -308,6 +308,7 @@ public final class GuiDisplayUtil {
if( !inp.hasCancelled() ) if( !inp.hasCancelled() )
for(Card c : inp.getSelected()) for(Card c : inp.getSelected())
c.tap(); c.tap();
game.getInputQueue().updateObservers();
} }
}); });
} }
@@ -332,6 +333,7 @@ public final class GuiDisplayUtil {
if( !inp.hasCancelled() ) if( !inp.hasCancelled() )
for(Card c : inp.getSelected()) for(Card c : inp.getSelected())
c.untap(); c.untap();
game.getInputQueue().updateObservers();
} }
}); });
} }