diff --git a/src/main/java/org/cryptomator/ui/wrongfilealert/WrongFileAlertController.java b/src/main/java/org/cryptomator/ui/wrongfilealert/WrongFileAlertController.java index 7f05e5287..e772a0113 100644 --- a/src/main/java/org/cryptomator/ui/wrongfilealert/WrongFileAlertController.java +++ b/src/main/java/org/cryptomator/ui/wrongfilealert/WrongFileAlertController.java @@ -30,6 +30,7 @@ public class WrongFileAlertController implements FxController { @FXML public void initialize() { + //TODO: add dark-mode screens final String resource = SystemUtils.IS_OS_MAC ? "/img/vault-volume-mac.png" : "/img/vault-volume-win.png"; try (InputStream in = getClass().getResourceAsStream(resource)) { this.screenshot = new Image(in);