From 866fe80705ff94eea94c518cbbb797a89c42b8e4 Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Wed, 10 Apr 2024 10:07:25 -0400 Subject: [PATCH] Fix quicksettings in vertical mode #2030 #2075 --- panel.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/panel.js b/panel.js index 9f8a261..8a222e9 100644 --- a/panel.js +++ b/panel.js @@ -957,7 +957,10 @@ export const Panel = GObject.registerClass({ if (actor instanceof St.BoxLayout) { actor.vertical = isVertical; - } else if ((actor._delegate || actor) instanceof PanelMenu.ButtonBox && actor != this.statusArea.appMenu) { + } else if ( + actor != this.statusArea.appMenu && + ((actor._delegate || actor) instanceof PanelMenu.ButtonBox || actor == this.statusArea.quickSettings) + ) { let child = actor.get_first_child(); if (isVertical && !actor.visible && !actor._dtpVisibleId) {