fix cell edit on first row

This commit is contained in:
marhali 2022-01-07 18:58:57 +01:00
parent fe5367d647
commit cf177c4373
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@
- Support for dots within key nodes in YAML files - Support for dots within key nodes in YAML files
### Fixed ### Fixed
- First row inside table view is not editable
- Key focus within tree or table view after translation change - Key focus within tree or table view after translation change
### Changed ### Changed

View File

@ -85,7 +85,7 @@ public class TableModelMapper implements TableModel, SearchQueryListener {
@Override @Override
public boolean isCellEditable(int rowIndex, int columnIndex) { public boolean isCellEditable(int rowIndex, int columnIndex) {
return rowIndex > 0; // Everything should be editable except the headline return true;
} }
@Override @Override