mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-25 00:50:31 +00:00
Fixes
This commit is contained in:
parent
940480918e
commit
69938b469f
2 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@ public class NativeBridge {
|
||||||
if (macOsLibrary == null && !loadingFailed) {
|
if (macOsLibrary == null && !loadingFailed) {
|
||||||
try {
|
try {
|
||||||
System.setProperty("jna.library.path", XPipeInstallation.getCurrentInstallationBasePath()
|
System.setProperty("jna.library.path", XPipeInstallation.getCurrentInstallationBasePath()
|
||||||
.resolve("Contents").resolve("runtime").resolve("Home").resolve("lib").toString());
|
.resolve("Contents").resolve("runtime").resolve("Contents").resolve("Home").resolve("lib").toString());
|
||||||
var l = Native.load("xpipe_bridge", MacOsLibrary.class, Map.of());
|
var l = Native.load("xpipe_bridge", MacOsLibrary.class, Map.of());
|
||||||
macOsLibrary = l;
|
macOsLibrary = l;
|
||||||
} catch (Throwable t) {
|
} catch (Throwable t) {
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.root.macos:seamless-frame {
|
.root.macos:seamless-frame {
|
||||||
-fx-padding: 0 0 27 0;
|
-fx-padding: 0 0 25 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.root:dark:separate-frame .background {
|
.root:dark:separate-frame .background {
|
||||||
|
|
Loading…
Reference in a new issue