Skip to content

Commit a34e71d

Browse files
committed
Don't hide gwl when opening overview and expo.
The panel fades out already - having the window list disappear immediately is distracting.
1 parent f354e6f commit a34e71d

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

files/usr/share/cinnamon/applets/[email protected]/applet.js

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -304,10 +304,6 @@ class GroupedWindowListApplet extends Applet.Applet {
304304
this.signals.connect(global.display, 'window-demands-attention', (...args) => this.updateAttentionState(...args));
305305
this.signals.connect(global.display, 'window-created', (...args) => this.onWindowCreated(...args));
306306
this.signals.connect(global.settings, 'changed::panel-edit-mode', (...args) => this.on_panel_edit_mode_changed(...args));
307-
this.signals.connect(Main.overview, 'showing', (...args) => this.onOverviewShow(...args));
308-
this.signals.connect(Main.overview, 'hiding', (...args) => this.onOverviewHide(...args));
309-
this.signals.connect(Main.expo, 'showing', (...args) => this.onOverviewShow(...args));
310-
this.signals.connect(Main.expo, 'hiding', (...args) => this.onOverviewHide(...args));
311307
this.signals.connect(Main.themeManager, 'theme-set', (...args) => this.refreshCurrentAppList(...args));
312308
}
313309

@@ -982,14 +978,6 @@ class GroupedWindowListApplet extends Applet.Applet {
982978
this.state.set({thumbnailCloseButtonOffset: global.ui_scale > 1 ? -10 : 0});
983979
this.refreshAllAppLists();
984980
}
985-
986-
onOverviewShow() {
987-
this.actor.hide();
988-
}
989-
990-
onOverviewHide() {
991-
this.actor.show();
992-
}
993981
}
994982

995983
function main(metadata, orientation, panel_height, instance_id) {

0 commit comments

Comments
 (0)