Removed PanelCorners (GNOME 42)

This commit is contained in:
Tony Houghton
2022-04-10 22:21:10 +01:00
parent 0b54630455
commit 6df30c752c
2 changed files with 1 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
{
"shell-version": ["40", "41"],
"shell-version": ["40", "41", "42"],
"uuid": "multi-monitors-add-on@spin83",
"name": "Multi Monitors Add-On",
"settings-schema": "org.gnome.shell.extensions.multi-monitors-add-on",

View File

@@ -376,12 +376,6 @@ var MultiMonitorsPanel = (() => {
this._rightBox = new St.BoxLayout({ name: 'panelRight' });
this.add_child(this._rightBox);
this._leftCorner = new Panel.PanelCorner(St.Side.LEFT);
this.add_child(this._leftCorner);
this._rightCorner = new Panel.PanelCorner(St.Side.RIGHT);
this.add_child(this._rightCorner);
this._showingId = Main.overview.connect('showing', () => {
this.add_style_pseudo_class('overview');
});