Skip to content

Commit

Permalink
CSSTUDIO-2014 By default, sort according to PV-name.
Browse files Browse the repository at this point in the history
  • Loading branch information
abrahamwolk committed Aug 21, 2023
1 parent a591a51 commit 126b33e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions core/ui/src/main/java/org/phoebus/ui/pv/PVList.java
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ private void createTableColumns()
name_col.setCellValueFactory(cell -> cell.getValue().name);
name_col.setMaxWidth(400.0);
table.getColumns().add(name_col);
table.getSortOrder().setAll(name_col); // By default, sort according to PV-name.

final TableColumn<PVInfo, Number> ref_col = new TableColumn<>(Messages.PVListTblReferences);
ref_col.setCellValueFactory(cell -> cell.getValue().references);
Expand Down

0 comments on commit 126b33e

Please sign in to comment.