浏览代码

Always hide spinner, as soon as locationPresetLoading is finished

Armin Schrenk 1 年之前
父节点
当前提交
062c674ef1

+ 7 - 4
src/main/java/org/cryptomator/ui/addvaultwizard/CreateNewVaultLocationController.java

@@ -150,10 +150,13 @@ public class CreateNewVaultLocationController implements FxController {
 
 	private void loadLocationPresets() {
 		Platform.runLater(() -> loadingPresetLocations.set(true));
-		LocationPresetsProvider.loadAll(LocationPresetsProvider.class) //
-				.flatMap(LocationPresetsProvider::getLocations) //we do not use sorted(), because it evaluates the stream elements, blocking until all elements are gathered
-				.forEach(this::createRadioButtonFor);
-		Platform.runLater(() -> loadingPresetLocations.set(false));
+		try{
+			LocationPresetsProvider.loadAll(LocationPresetsProvider.class) //
+					.flatMap(LocationPresetsProvider::getLocations) //we do not use sorted(), because it evaluates the stream elements, blocking until all elements are gathered
+					.forEach(this::createRadioButtonFor);
+		} finally {
+			Platform.runLater(() -> loadingPresetLocations.set(false));
+		}
 	}
 
 	private void createRadioButtonFor(LocationPreset preset) {