fix cell edit on first row
This commit is contained in:
parent
fe5367d647
commit
cf177c4373
@ -7,6 +7,7 @@
|
||||
- Support for dots within key nodes in YAML files
|
||||
|
||||
### Fixed
|
||||
- First row inside table view is not editable
|
||||
- Key focus within tree or table view after translation change
|
||||
|
||||
### Changed
|
||||
|
@ -85,7 +85,7 @@ public class TableModelMapper implements TableModel, SearchQueryListener {
|
||||
|
||||
@Override
|
||||
public boolean isCellEditable(int rowIndex, int columnIndex) {
|
||||
return rowIndex > 0; // Everything should be editable except the headline
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
x
Reference in New Issue
Block a user