This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 170288
Collapse All | Expand All

(-)a/editor/src/org/netbeans/modules/editor/impl/StatusLineFactories.java (-1 / +2 lines)
Lines 129-135 Link Here
129
            if (editorUI != null) {
129
            if (editorUI != null) {
130
                StatusBar statusBar = editorUI.getStatusBar();
130
                StatusBar statusBar = editorUI.getStatusBar();
131
                statusBar.setVisible(!underMainWindow);
131
                statusBar.setVisible(!underMainWindow);
132
                if (underMainWindow) {
132
                boolean shouldUpdateGlobal = underMainWindow && component.isShowing();
133
                if (shouldUpdateGlobal) {
133
                    statusBar.updateGlobal();
134
                    statusBar.updateGlobal();
134
                    LOG.fine("  end of refreshStatusLine() - found main window component\n\n"); // NOI18N
135
                    LOG.fine("  end of refreshStatusLine() - found main window component\n\n"); // NOI18N
135
                    return; // First non-docked one found and updated -> quit
136
                    return; // First non-docked one found and updated -> quit

Return to bug 170288