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 236349
Collapse All | Expand All

(-)a/openide.explorer/src/org/openide/explorer/view/OutlineViewDropSupport.java (-1 / +5 lines)
Lines 147-153 Link Here
147
147
148
    private void checkStoredGlassPane() {
148
    private void checkStoredGlassPane() {
149
        // remember current glass pane to set back at end of dragging over this compoment
149
        // remember current glass pane to set back at end of dragging over this compoment
150
        if (!DropGlassPane.isOriginalPaneStored()) {
150
        if (!DropGlassPane.isOriginalPaneStored() || dropPane == null) {
151
            if (DropGlassPane.isOriginalPaneStored()) {
152
                // Original panel is stored, but dropPane == null, see #236349.
153
                DropGlassPane.putBackOriginal();
154
            }
151
            Component comp = table.getRootPane().getGlassPane();
155
            Component comp = table.getRootPane().getGlassPane();
152
            DropGlassPane.setOriginalPane(table, comp, comp.isVisible());
156
            DropGlassPane.setOriginalPane(table, comp, comp.isVisible());
153
157

Return to bug 236349