Skip to content

Commit ae002ec

Browse files
committed
🎉 Add support for GNOME 50
1 parent bb09c6f commit ae002ec

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

extension.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export default class KandoIntegration extends Extension {
6969
enable() {
7070

7171
// Do nothing on X11.
72-
if (!Meta.is_wayland_compositor()) {
72+
if (Meta.is_wayland_compositor && !Meta.is_wayland_compositor()) {
7373
return;
7474
}
7575

@@ -141,7 +141,7 @@ export default class KandoIntegration extends Extension {
141141
disable() {
142142

143143
// Do nothing on X11.
144-
if (!Meta.is_wayland_compositor()) {
144+
if (Meta.is_wayland_compositor && !Meta.is_wayland_compositor()) {
145145
return;
146146
}
147147

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"github": "schneegans",
99
"paypal": "simonschneegans"
1010
},
11-
"shell-version": ["45", "46", "47", "48", "49"],
11+
"shell-version": ["45", "46", "47", "48", "49", "50"],
1212
"version-name": "v0.10.0",
1313
"url": "https://github.com/kando-menu"
1414
}

0 commit comments

Comments
 (0)