From 72066395d664d20a160e836821e014e3b5136018 Mon Sep 17 00:00:00 2001 From: Craig Raw Date: Thu, 9 Nov 2023 12:31:18 +0200 Subject: [PATCH] followup --- src/main/java/com/sparrowwallet/sparrow/AppServices.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/sparrowwallet/sparrow/AppServices.java b/src/main/java/com/sparrowwallet/sparrow/AppServices.java index 1e4db09a..c64d13da 100644 --- a/src/main/java/com/sparrowwallet/sparrow/AppServices.java +++ b/src/main/java/com/sparrowwallet/sparrow/AppServices.java @@ -575,7 +575,7 @@ public class AppServices { } private static double getReducedWindowHeight() { - return org.controlsfx.tools.Platform.getCurrent() == org.controlsfx.tools.Platform.WINDOWS ? 790d : 768d; //Windows includes menu bar of 22px + return org.controlsfx.tools.Platform.getCurrent() != org.controlsfx.tools.Platform.OSX ? 790d : 768d; //Check for menu bar of ~22px } public Application getApplication() {