Fixed tool tip to accomodate sorting.

This commit is contained in:
kruland2607 2013-11-04 14:45:48 -06:00
parent 05da59e738
commit 085445ab9c

View File

@ -609,6 +609,8 @@ public class SimulationPanel extends JPanel {
return super.getTableCellRendererComponent(table, value,
isSelected, hasFocus, row, column);
row = table.getRowSorter().convertRowIndexToModel(row);
// A JLabel is self-contained and has set its own tool tip
if (value instanceof JLabel) {
JLabel label = (JLabel) value;