From e49f4c3e4275097bae54c2cdc03ba0b6e7f669b6 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 23 Nov 2024 13:41:50 +0200 Subject: [PATCH] fix(client): title bar buttons on horizontal layout --- src/public/app/layouts/desktop_layout.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/public/app/layouts/desktop_layout.js b/src/public/app/layouts/desktop_layout.js index 42b04d9df..612f3bfad 100644 --- a/src/public/app/layouts/desktop_layout.js +++ b/src/public/app/layouts/desktop_layout.js @@ -100,7 +100,9 @@ export default class DesktopLayout { .setParent(appContext) .optChild(launcherPaneIsHorizontal, new FlexContainer('row') .child(new TabRowWidget().class("full-width")) + .child(new TitleBarButtonsWidget()) .css('height', '40px') + .css('background-color', 'var(--launcher-pane-background-color)') .setParent(appContext) ) .optChild(launcherPaneIsHorizontal, launcherPane)