Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cd156c commit 56e28afCopy full SHA for 56e28af
sqldev/src/main/java/org/utplsql/sqldev/ui/runner/RunnerPanel.java
@@ -483,7 +483,18 @@ private void setCurrentRun(final Run run) {
483
}
484
485
486
+ private void showDockable() {
487
+ try {
488
+ if (!RunnerFactory.getDockable().isVisible()) {
489
+ RunnerFactory.showDockable();
490
+ }
491
+ } catch (Throwable t) {
492
+ // ignore
493
494
495
+
496
public synchronized void update(final String reporterId) {
497
+ showDockable();
498
setCurrentRun(runs.get(reporterId));
499
final int row = currentRun.getCurrentTestNumber() - 1;
500
final CharSequence header = testOverviewTableModel.getTestIdColumnName();
0 commit comments