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

(-)autoupdate.ui/src/org/netbeans/modules/autoupdate/ui/UnitTable.java (-1 / +2 lines)
Lines 115-122 Link Here
115
        java.awt.Point p = e.getPoint ();
115
        java.awt.Point p = e.getPoint ();
116
        int rowIndex = rowAtPoint (p);
116
        int rowIndex = rowAtPoint (p);
117
        int colIndex = columnAtPoint (p);
117
        int colIndex = columnAtPoint (p);
118
        int realRowIndex = convertRowIndexToModel (rowIndex);
118
        int realColumnIndex = convertColumnIndexToModel (colIndex);
119
        int realColumnIndex = convertColumnIndexToModel (colIndex);
119
        tip = model.getToolTipText (rowIndex, realColumnIndex);
120
        tip = model.getToolTipText (realRowIndex, realColumnIndex);
120
        return tip != null ? tip : super.getToolTipText (e);
121
        return tip != null ? tip : super.getToolTipText (e);
121
    }
122
    }
122
    
123
    

Return to bug 236062