Issue #1566: column X should be alone on a line fixed

This commit is contained in:
Ruslan Diachenko 2015-08-08 23:21:28 +01:00 committed by Roman Ivanov
parent 801db8ed46
commit 6bb0d26301
1 changed files with 6 additions and 3 deletions

View File

@ -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;
}
}