Fix NPE [release]

This commit is contained in:
crschnick
2025-02-27 08:50:25 +00:00
parent c7a147883a
commit 8005d4b225
3 changed files with 7 additions and 2 deletions
@@ -30,7 +30,10 @@ public class ContextMenuHelper {
Platform.runLater(() -> {
var first = contextMenu.getItems().getFirst();
if (first != null) {
first.getStyleableNode().requestFocus();
var s = first.getStyleableNode();
if (s != null) {
s.requestFocus();
}
}
});
});
+2
View File
@@ -3,6 +3,8 @@
- Add support for cosmic-term of the new cosmic desktop environment
- Update homepage and documentation page. There's now much more content at [https://docs.xpipe.io](https://docs.xpipe.io)
- Fix terminal restart failing with a wrong secret message
- Fix ssh failing on some Windows systems when userprofile contained special characters
- Fix script context menu in hub description being misleading when compatibility could not be determined
- Fix git sync opening a lot of empty windows on Windows in some cases
- Fix git sync test failing with no clear message when git wasn't installed
- Fix podman container state being wrong on refresh
+1 -1
View File
@@ -1 +1 @@
15.2-4
15.2