Skip to content

Commit 3ea3a4d

Browse files
committed
Fixes #64
1 parent 8d993fa commit 3ea3a4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/cryptomator/linux/tray/AppindicatorTrayMenuController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ private void showTrayIconWithSVG(String s) {
4949
try (var arena = Arena.ofConfined()) {
5050
var svgSourcePath = System.getProperty(SVG_SOURCE_PROPERTY);
5151
// flatpak
52-
if (svgSourcePath != null) {
52+
if (svgSourcePath == null) {
5353
indicator = app_indicator_new(arena.allocateUtf8String(APP_INDICATOR_ID),
5454
arena.allocateUtf8String(s),
5555
APP_INDICATOR_CATEGORY_APPLICATION_STATUS());

0 commit comments

Comments
 (0)