소스 검색

fix copy-paste error in log message

Sebastian Stenzel 3 년 전
부모
커밋
0ace5bb42b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/java/org/cryptomator/ui/fxapp/FxApplicationStyle.java

+ 1 - 1
src/main/java/org/cryptomator/ui/fxapp/FxApplicationStyle.java

@@ -99,7 +99,7 @@ public class FxApplicationStyle {
 				.ofNullable(getClass().getResource("/css/dark_theme.bss")) //
 				.orElse(getClass().getResource("/css/dark_theme.css"));
 		if (stylesheet == null) {
-			LOG.warn("Failed to load light_theme stylesheet");
+			LOG.warn("Failed to load dark_theme stylesheet");
 		} else {
 			Application.setUserAgentStylesheet(stylesheet.toString());
 			appearanceProvider.ifPresent(provider -> provider.adjustToTheme(Theme.DARK));