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

(-)projectui/src/org/netbeans/modules/project/ui/PhysicalView.java (+1 lines)
Lines 372-377 Link Here
372
        public ProjectIconNode(Node orig, boolean root) {
372
        public ProjectIconNode(Node orig, boolean root) {
373
            super(orig, orig.isLeaf() ? Children.LEAF : new ProjectBadgingChildren(orig));
373
            super(orig, orig.isLeaf() ? Children.LEAF : new ProjectBadgingChildren(orig));
374
            this.root = root;
374
            this.root = root;
375
            setValue("VCS_PHYSICAL", Boolean.TRUE); //#159543 
375
            addNodeListener(this);
376
            addNodeListener(this);
376
        }
377
        }
377
378

Return to bug 159543