Skip to content

Commit

Permalink
v20230204 (applied-geodesy#417)
Browse files Browse the repository at this point in the history
- Version number increased v20130204
- Visibility of new table column (number of observations) restricted to a-posteriori view
  • Loading branch information
loesler authored Feb 4, 2023
1 parent c82f768 commit 4175f80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ public ObservableValue<Boolean> call(CellDataFeatures<PointRow, Boolean> param)
cellValueType = CellValueType.INTEGER;
columnContentType = ColumnContentType.NUMBER_OF_OBSERVATIONS;
header = new ColumnTooltipHeader(cellValueType, labelText, tooltipText);
integerColumn = this.<Integer>getColumn(tableContentType, columnContentType, header, PointRow::numberOfObservationsProperty, getIntegerCallback(), ColumnType.VISIBLE, columnIndex, false, true);
integerColumn = this.<Integer>getColumn(tableContentType, columnContentType, header, PointRow::numberOfObservationsProperty, getIntegerCallback(), ColumnType.APOSTERIORI_POINT, columnIndex, false, true);
table.getColumns().add(integerColumn);

// Residual
Expand Down
2 changes: 1 addition & 1 deletion JAG3D/src/org/applied_geodesy/version/jag3d/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class Version {
private final static Map<VersionType, Integer> versions = Map.of(
VersionType.ADJUSTMENT_CORE, 20220930,
VersionType.DATABASE, 20230131,
VersionType.USER_INTERFACE, 20230117
VersionType.USER_INTERFACE, 20230204
);

private Version() {}
Expand Down

0 comments on commit 4175f80

Please sign in to comment.