We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8cc273 commit 1295208Copy full SHA for 1295208
1 file changed
src/main/java/org/scijava/ui/swing/console/SwingConsolePane.java
@@ -110,14 +110,12 @@ public void append(final OutputEvent event) {
110
111
@Override
112
public void show() {
113
- if (window == null) return;
+ if (window == null || window.isVisible()) return;
114
threadService.queue(new Runnable() {
115
116
117
public void run() {
118
- if (!window.isVisible()) {
119
- window.setVisible(true);
120
- }
+ window.setVisible(true);
121
}
122
});
123
0 commit comments