mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-09-25 18:05:39 +00:00
Fix NPE [release]
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
Vendored
+2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user