Adapt to fixed Meta functions namespace

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3546>
This commit is contained in:
Bilal Elmoussaoui
2024-12-11 12:45:04 +01:00
parent 961075d0e4
commit 4034e69d0d
15 changed files with 60 additions and 44 deletions

View File

@ -1788,7 +1788,7 @@ export const Keyboard = GObject.registerClass({
}
_animateShow() {
Meta.disable_unredirect_for_display(global.display);
global.compositor.disable_unredirect();
if (this._focusWindow)
this._animateWindow(this._focusWindow, true);
@ -1844,7 +1844,7 @@ export const Keyboard = GObject.registerClass({
_animateHideComplete() {
Main.layoutManager.keyboardBox.hide();
Meta.enable_unredirect_for_display(global.display);
global.compositor.enable_unredirect();
}
gestureProgress(delta) {