diff --git a/src/magic/ui/GameController.java b/src/magic/ui/GameController.java index 2134e5df7b..56fd41b017 100644 --- a/src/magic/ui/GameController.java +++ b/src/magic/ui/GameController.java @@ -475,7 +475,11 @@ public class GameController implements ILogBookListener { } else { game.gotoLastUndoPoint(); } - gamePanel.getLogBookViewer().update(); + SwingUtilities.invokeLater(new Runnable() { + public void run() { + gamePanel.getLogBookViewer().update(); + } + }); } public void haltGame() {