Skip to content

Commit

Permalink
Add geometry update counter and rewrite labels
Browse files Browse the repository at this point in the history
  • Loading branch information
praszuk committed Sep 7, 2024
1 parent 94c188d commit 0c26e6e
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,19 @@ public void actionPerformed(ActionEvent actionEvent) {
Integer.toString(buildingsStats.getImportNewBuildingCounter())
);
statsPanelData.put(
tr("Buildings with full replace"),
tr("Imports with building replace"),
Integer.toString(buildingsStats.getImportWithReplaceCounter())
);
statsPanelData.put(
tr("Buildings with tags update"),
tr("Imports with tags update"),
Integer.toString(buildingsStats.getImportWithTagsUpdateCounter())
);
statsPanelData.put(
tr("Total number of import actions"),
tr("Imports with geometry update"),
Integer.toString(buildingsStats.getImportWithGeometryUpdateCounter())
);
statsPanelData.put(
tr("Total import actions"),
Integer.toString(buildingsStats.getTotalImportActionCounter())
);

Expand Down

0 comments on commit 0c26e6e

Please sign in to comment.