Skip to content

Commit 8005d4b

Browse files
committed
Fix NPE [release]
1 parent c7a1478 commit 8005d4b

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

Diff for: app/src/main/java/io/xpipe/app/util/ContextMenuHelper.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ public static ContextMenu create() {
3030
Platform.runLater(() -> {
3131
var first = contextMenu.getItems().getFirst();
3232
if (first != null) {
33-
first.getStyleableNode().requestFocus();
33+
var s = first.getStyleableNode();
34+
if (s != null) {
35+
s.requestFocus();
36+
}
3437
}
3538
});
3639
});

Diff for: dist/changelogs/15.2_incremental.md

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
- Add support for cosmic-term of the new cosmic desktop environment
44
- Update homepage and documentation page. There's now much more content at [https://docs.xpipe.io](https://docs.xpipe.io)
55
- Fix terminal restart failing with a wrong secret message
6+
- Fix ssh failing on some Windows systems when userprofile contained special characters
7+
- Fix script context menu in hub description being misleading when compatibility could not be determined
68
- Fix git sync opening a lot of empty windows on Windows in some cases
79
- Fix git sync test failing with no clear message when git wasn't installed
810
- Fix podman container state being wrong on refresh

Diff for: version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
15.2-4
1+
15.2

0 commit comments

Comments
 (0)