From 9ee3c4848556613ee275b17d74c21024fa6a960d Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Fri, 12 Dec 2025 00:15:58 +0200 Subject: [PATCH] chore(layout): relocate ribbon on the top temporarily --- apps/client/src/layouts/desktop_layout.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/client/src/layouts/desktop_layout.tsx b/apps/client/src/layouts/desktop_layout.tsx index 8815e113d..d2e88740b 100644 --- a/apps/client/src/layouts/desktop_layout.tsx +++ b/apps/client/src/layouts/desktop_layout.tsx @@ -154,6 +154,11 @@ export default class DesktopLayout { ) .optChild(!isFloatingTitlebar, titleRow) .optChild(!isNewLayout, ) + .optChild(isNewLayout, ( + + + + )) .child(new WatchedFileUpdateStatusWidget()) .child() .child( @@ -179,11 +184,6 @@ export default class DesktopLayout { ...this.customWidgets.get("node-detail-pane"), // typo, let's keep it for a while as BC ...this.customWidgets.get("note-detail-pane") ) - .optChild(isNewLayout, ( - - - - )) .optChild(isNewLayout, ) ) )