# This patch file was generated by NetBeans IDE # Following Index: paths are relative to: C:\Users\fm\Documents\NetBeansProjects\NetBeans\main-silver # This patch can be applied using context Tools: Patch action on respective folder. # It uses platform neutral UTF-8 encoding and \n newlines. # Above lines and this line are ignored by the patching process. Index: autoupdate.ui/src/org/netbeans/modules/autoupdate/ui/UnitTable.java --- autoupdate.ui/src/org/netbeans/modules/autoupdate/ui/UnitTable.java +++ autoupdate.ui/src/org/netbeans/modules/autoupdate/ui/UnitTable.java @@ -115,8 +115,9 @@ java.awt.Point p = e.getPoint (); int rowIndex = rowAtPoint (p); int colIndex = columnAtPoint (p); + int realRowIndex = convertRowIndexToModel (rowIndex); int realColumnIndex = convertColumnIndexToModel (colIndex); - tip = model.getToolTipText (rowIndex, realColumnIndex); + tip = model.getToolTipText (realRowIndex, realColumnIndex); return tip != null ? tip : super.getToolTipText (e); }