Browse Source

show provided display name

Sebastian Stenzel 4 years ago
parent
commit
72e2f64a68

+ 1 - 1
pom.xml

@@ -25,7 +25,7 @@
 
 		<!-- cryptomator dependencies -->
 		<cryptomator.cryptofs.version>2.1.0-beta5</cryptomator.cryptofs.version>
-		<cryptomator.integrations.version>1.0.0-beta2</cryptomator.integrations.version>
+		<cryptomator.integrations.version>1.0.0-rc1</cryptomator.integrations.version>
 		<cryptomator.integrations.win.version>1.0.0-beta2</cryptomator.integrations.win.version>
 		<cryptomator.integrations.mac.version>1.0.0-beta2</cryptomator.integrations.mac.version>
 		<cryptomator.integrations.linux.version>1.0.0-beta1</cryptomator.integrations.linux.version>

+ 1 - 1
src/main/java/org/cryptomator/ui/preferences/GeneralPreferencesController.java

@@ -191,7 +191,7 @@ public class GeneralPreferencesController implements FxController {
 			if (provider == null) {
 				return null;
 			} else {
-				return provider.getClass().getSimpleName(); // TODO: change to provider.getDisplayName();
+				return provider.displayName();
 			}
 		}