Skip to content

Commit 39ece28

Browse files
authored
Merge pull request #300 from matttbe/gnome-48
GNOME: add support for version 48
2 parents 403c84a + 3f654f3 commit 39ece28

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

[email protected]/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"shell-version": [
3-
"47"
3+
"48"
44
],
55
"uuid": "[email protected]",
66
"url": "https://github.com/mzur/gnome-shell-wsmatrix",

[email protected]/workspacePopup/workspaceAnimation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,6 @@ export class WorkspaceAnimationController extends GWorkspaceAnimationController
251251
switchData.monitors.push(group);
252252
}
253253

254-
Meta.disable_unredirect_for_display(global.display);
254+
global.compositor.disable_unredirect();
255255
}
256256
}

[email protected]/workspacePopup/workspaceManagerOverride.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ export default class WorkspaceManagerOverride {
380380
* directions and using the WorkspaceSwitcherPopup (with constructor arguments)
381381
* provided by this extension.
382382
*/
383-
_showWorkspaceSwitcher(display, window, binding) {
383+
_showWorkspaceSwitcher(display, window, event, binding) {
384384
let workspaceManager = this.wsManager;
385385

386386
if (!Main.sessionMode.hasWorkspaces)

[email protected]/workspacePopup/workspaceSwitcherPopup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ class WorkspaceSwitcherPopup extends SwitcherPopup {
170170
key = 'move-to-workspace-' + key.replace('move_to_workspace_', '');
171171
}
172172

173-
this._wm._showWorkspaceSwitcher(global.display, global.display.focus_window, key);
173+
this._wm._showWorkspaceSwitcher(global.display, global.display.focus_window, null, key);
174174
}
175175
}
176176

0 commit comments

Comments
 (0)