We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4a6299 commit 05e60fdCopy full SHA for 05e60fd
src/main/java/com/esri/samples/hydrography/add_enc_exchange_set/AddEncExchangeSetSample.java
@@ -73,7 +73,9 @@ public void start(Stage stage) {
73
74
// hide progress indicator when map is done drawing
75
mapView.addDrawStatusChangedListener(e -> {
76
- if (e.getDrawStatus() == DrawStatus.COMPLETED) {
+ if (e.getDrawStatus() == DrawStatus.IN_PROGRESS) {
77
+ progressIndicator.setVisible(true);
78
+ } else if (e.getDrawStatus() == DrawStatus.COMPLETED) {
79
progressIndicator.setVisible(false);
80
}
81
});
0 commit comments