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

(-)a/editor.completion/src/org/netbeans/modules/editor/completion/CompletionLayoutPopup.java (+3 lines)
Lines 301-306 Link Here
301
        // so force a heavyweight parent by passing in owner==null. (#96717)
301
        // so force a heavyweight parent by passing in owner==null. (#96717)
302
        
302
        
303
        JTextComponent owner = Utilities.isMac() ? null : layout.getEditorComponent();
303
        JTextComponent owner = Utilities.isMac() ? null : layout.getEditorComponent();
304
        if(owner != null && owner.getClientProperty("ForceHeavyweightCompletionPopup") != null) {
305
            owner = null;
306
        }
304
        
307
        
305
        // #76648: Autocomplete box is too close to text
308
        // #76648: Autocomplete box is too close to text
306
        if(displayAboveCaret && Utilities.isMac()) {
309
        if(displayAboveCaret && Utilities.isMac()) {

Return to bug 200295