Issue #1566: column X should be alone on a line fixed
This commit is contained in:
parent
801db8ed46
commit
6bb0d26301
|
|
@ -301,7 +301,8 @@ public class JTreeTable extends JTable {
|
|||
int row, int column) {
|
||||
if (isSelected) {
|
||||
setBackground(table.getSelectionBackground());
|
||||
} else {
|
||||
}
|
||||
else {
|
||||
setBackground(table.getBackground());
|
||||
}
|
||||
|
||||
|
|
@ -408,7 +409,8 @@ public class JTreeTable extends JTable {
|
|||
updatingListSelectionModel = true;
|
||||
try {
|
||||
super.resetRowSelection();
|
||||
} finally {
|
||||
}
|
||||
finally {
|
||||
updatingListSelectionModel = false;
|
||||
}
|
||||
}
|
||||
|
|
@ -455,7 +457,8 @@ public class JTreeTable extends JTable {
|
|||
}
|
||||
}
|
||||
}
|
||||
} finally {
|
||||
}
|
||||
finally {
|
||||
updatingListSelectionModel = false;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue