Skip to content

Commit

Permalink
Viewer: Minor code formatting tweaks
Browse files Browse the repository at this point in the history
(oversights from 2152fb0)
  • Loading branch information
dcommander committed Jan 11, 2025
1 parent 989dfe2 commit 368a786
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions java/com/turbovnc/rfb/Helper.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions java/com/turbovnc/rfb/Params.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 368a786

Please sign in to comment.