From a4a3ad99eb5a4be8e2082fc6c7843b9680a1da46 Mon Sep 17 00:00:00 2001 From: Agetian Date: Tue, 24 Jan 2017 14:01:17 +0000 Subject: [PATCH] - Instantly show the card Scry is inquiring about to avoid specifically having to mouse over the prompt to take a look at it. --- forge-gui/src/main/java/forge/player/PlayerControllerHuman.java | 1 + 1 file changed, 1 insertion(+) diff --git a/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java b/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java index e17ecb9f022..e6b10a9f64d 100644 --- a/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java +++ b/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java @@ -658,6 +658,7 @@ public class PlayerControllerHuman final CardView view = CardView.get(c); tempShowCard(c); + getGui().setCard(c.getView()); // final boolean result = getGui().confirm(view, String.format("Put %s on the top or bottom of your library?", view), ImmutableList.of("Top", "Bottom")); final InputConfirm inp = new InputConfirm(this, String.format("Put %s on the top or bottom of your library?", view), "Top", "Bottom", true, c.getView()); inp.showAndWait();