Skip to content

Commit

Permalink
Select name column when new abbreviation is added
Browse files Browse the repository at this point in the history
  • Loading branch information
btut committed Jun 12, 2021
1 parent 66c7b12 commit add2d44
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ private void selectNewAbbreviation() {
int lastRow = viewModel.abbreviationsCountProperty().get() - 1;
journalAbbreviationsTable.scrollTo(lastRow);
journalAbbreviationsTable.getSelectionModel().select(lastRow);
journalAbbreviationsTable.getFocusModel().focus(lastRow);
journalAbbreviationsTable.getFocusModel().focus(lastRow, journalTableNameColumn);
}

@Override
Expand Down

0 comments on commit add2d44

Please sign in to comment.