From 19802ba8a1961c48f7380f9bafdeaff74db23468 Mon Sep 17 00:00:00 2001 From: fredcw <58893963+fredcw@users.noreply.github.com> Date: Wed, 14 Jan 2026 01:30:27 +0000 Subject: [PATCH] menu applet: remove 'force show panel' toggle as ... ... option was removed in https://github.com/linuxmint/cinnamon/pull/11779/changes --- .../share/cinnamon/applets/menu@cinnamon.org/applet.js | 4 ---- .../applets/menu@cinnamon.org/settings-schema.json | 8 +------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/files/usr/share/cinnamon/applets/menu@cinnamon.org/applet.js b/files/usr/share/cinnamon/applets/menu@cinnamon.org/applet.js index e2d290d0d9..85a7e77b3b 100644 --- a/files/usr/share/cinnamon/applets/menu@cinnamon.org/applet.js +++ b/files/usr/share/cinnamon/applets/menu@cinnamon.org/applet.js @@ -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; @@ -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); } }); diff --git a/files/usr/share/cinnamon/applets/menu@cinnamon.org/settings-schema.json b/files/usr/share/cinnamon/applets/menu@cinnamon.org/settings-schema.json index 7de182792d..c9fa8c290e 100644 --- a/files/usr/share/cinnamon/applets/menu@cinnamon.org/settings-schema.json +++ b/files/usr/share/cinnamon/applets/menu@cinnamon.org/settings-schema.json @@ -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", @@ -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,