File tree 3 files changed +7
-2
lines changed
app/src/main/java/io/xpipe/app/util
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,10 @@ public static ContextMenu create() {
30
30
Platform .runLater (() -> {
31
31
var first = contextMenu .getItems ().getFirst ();
32
32
if (first != null ) {
33
- first .getStyleableNode ().requestFocus ();
33
+ var s = first .getStyleableNode ();
34
+ if (s != null ) {
35
+ s .requestFocus ();
36
+ }
34
37
}
35
38
});
36
39
});
Original file line number Diff line number Diff line change 3
3
- Add support for cosmic-term of the new cosmic desktop environment
4
4
- Update homepage and documentation page. There's now much more content at [ https://docs.xpipe.io ] ( https://docs.xpipe.io )
5
5
- 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
6
8
- Fix git sync opening a lot of empty windows on Windows in some cases
7
9
- Fix git sync test failing with no clear message when git wasn't installed
8
10
- Fix podman container state being wrong on refresh
Original file line number Diff line number Diff line change 1
- 15.2-4
1
+ 15.2
You can’t perform that action at this time.
0 commit comments