Skip to content

Commit c45ae9e

Browse files
Merge pull request #117 from PhilippSalvisberg/bugfix/issue-116-background
keep dockable window hidden to fix #116
2 parents 60f222d + 4f5063c commit c45ae9e

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

sqldev/src/main/java/org/utplsql/sqldev/ui/runner/RunnerPanel.java

-11
Original file line numberDiff line numberDiff line change
@@ -479,22 +479,11 @@ private void setCurrentRun(final Run run) {
479479
}
480480
}
481481

482-
private void showDockable() {
483-
try {
484-
if (!RunnerFactory.getDockable().isVisible()) {
485-
RunnerFactory.showDockable();
486-
}
487-
} catch (Throwable t) {
488-
// ignore
489-
}
490-
}
491-
492482
private void enableOrDisableStopButton() {
493483
stopButton.setEnabled(currentRun.getEndTime() == null);
494484
}
495485

496486
public synchronized void update(final String reporterId) {
497-
showDockable();
498487
enableOrDisableStopButton();
499488
setCurrentRun(runs.get(reporterId));
500489
final int row = currentRun.getCurrentTestNumber() - 1;

0 commit comments

Comments
 (0)