Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions files/usr/share/cinnamon/applets/menu@cinnamon.org/applet.js
Original file line number Diff line number Diff line change
Expand Up @@ -1247,7 +1247,6 @@ class CinnamonMenuApplet extends Applet.TextIconApplet {
this._pathCompleter.set_dirs_only(false);
this.contextMenu = null;
this.lastSelectedCategory = null;
this.settings.bind("force-show-panel", "forceShowPanel");

this.orderDirty = false;

Expand Down Expand Up @@ -1280,9 +1279,6 @@ class CinnamonMenuApplet extends Applet.TextIconApplet {
_updateKeybinding() {
Main.keybindingManager.addXletHotKey(this, "overlay-key", this.overlayKey, () => {
if (!Main.overview.visible && !Main.expo.visible) {
if (this.forceShowPanel && !this.isOpen) {
this.panel.peekPanel();
}
this.menu.toggle_with_options(this.enableAnimation);
}
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"behavior-panel" : {
"type" : "section",
"title" : "Panel",
"keys" : ["overlay-key", "activate-on-hover", "hover-delay", "force-show-panel", "enable-animation"]
"keys" : ["overlay-key", "activate-on-hover", "hover-delay", "enable-animation"]
},
"appearance-menu" : {
"type" : "section",
Expand Down Expand Up @@ -217,12 +217,6 @@
"default" : true,
"description": "Enable autoscrolling in application list"
},
"force-show-panel" : {
"type" : "switch",
"default" : true,
"description": "Force the panel to be visible when opening the menu",
"tooltip": "Opening the menu will also show the main panel (which may be auto-hidden)."
},
"activate-on-hover" : {
"type" : "switch",
"default" : false,
Expand Down
Loading