Merging upstream version 20250212.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
ad845f6499
commit
0a7a7dc344
192 changed files with 32577 additions and 3262 deletions
|
@ -0,0 +1,14 @@
|
|||
import { Extension } from 'resource:///org/gnome/shell/extensions/extension.js';
|
||||
import { WorkspaceSwitcherPopup } from 'resource:///org/gnome/shell/ui/workspaceSwitcherPopup.js';
|
||||
|
||||
export default class extends Extension {
|
||||
enable() {
|
||||
this._originalWorkspaceSwitcherPopup_display = WorkspaceSwitcherPopup.prototype.display;
|
||||
WorkspaceSwitcherPopup.prototype.display = () => {};
|
||||
}
|
||||
|
||||
disable() {
|
||||
WorkspaceSwitcherPopup.prototype.display = this._originalWorkspaceSwitcherPopup_display;
|
||||
this._originalWorkspaceSwitcherPopup_display = null;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue