diff --git a/java/com/turbovnc/rfb/Helper.java b/java/com/turbovnc/rfb/Helper.java index 94ca9f8e7..cd4b6e7d1 100644 --- a/java/com/turbovnc/rfb/Helper.java +++ b/java/com/turbovnc/rfb/Helper.java @@ -52,12 +52,10 @@ private static synchronized void printMissingFeatures() { vlog.info(" - Keyboard grabbing"); if (Utils.osEID()) vlog.info(" - Extended input device support"); - if (Utils.isX11()) { + if (Utils.isX11()) vlog.info(" - Multi-screen spanning in full-screen mode"); - } - if (Utils.isMac()) { + if (Utils.isMac()) vlog.info(" - Multi-screen spanning"); - } if (Utils.isWindows()) vlog.info(" - Pageant support"); else diff --git a/java/com/turbovnc/rfb/Params.java b/java/com/turbovnc/rfb/Params.java index d32d1a33c..ad0dcf69e 100644 --- a/java/com/turbovnc/rfb/Params.java +++ b/java/com/turbovnc/rfb/Params.java @@ -797,8 +797,8 @@ public void save(String node) { "\"Primary\" when in windowed mode and the same effect as \"All\" when in " + "full-screen mode." + (Utils.isX11() ? " Due to general issues with spanning windows across " + - "multiple monitors in X11, this parameter has no effect on Un*x/X11 " + - "platforms except in full-screen mode." : "") + + "multiple monitors in X11, this parameter has no effect on Un*x/X11 " + + "platforms except in full-screen mode." : "") + (Utils.isMac() ? " This parameter has no effect on macOS unless " + "\"Displays have separate Spaces\" is disabled in the system settings." : ""), SpanParameter.AUTO);