From 44eb0d88e21ccbd5ab736d29a5558151a05aa742 Mon Sep 17 00:00:00 2001 From: Laurent Cozic Date: Thu, 13 Feb 2025 09:06:43 +0000 Subject: [PATCH] Move button to hideable components --- packages/app-mobile/components/ScreenHeader/index.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/app-mobile/components/ScreenHeader/index.tsx b/packages/app-mobile/components/ScreenHeader/index.tsx index beef0a46006..e428f4168e5 100644 --- a/packages/app-mobile/components/ScreenHeader/index.tsx +++ b/packages/app-mobile/components/ScreenHeader/index.tsx @@ -625,12 +625,14 @@ class ScreenHeaderComponent extends PureComponent this.restoreButton_press(), headerItemDisabled) : null; const duplicateButtonComp = !selectedFolderInTrash && this.props.noteSelectionEnabled ? duplicateButton(this.styles(), () => this.duplicateButton_press(), headerItemDisabled) : null; const sortButtonComp = !this.props.noteSelectionEnabled && this.props.sortButton_press ? sortButton(this.styles(), () => this.props.sortButton_press()) : null; + const togglePluginEditorButton = renderTogglePluginEditorButton(this.styles(), () => CommandService.instance().execute('toggleEditorPlugin'), false); // To allow the notebook dropdown (and perhaps other components) to have sufficient // space while in use, we allow certain buttons to be hidden. const hideableRightComponents = <> {pluginPanelsComp} {betaIconComp} + {togglePluginEditorButton} ; const titleComp = createTitleComponent(hideableRightComponents); @@ -652,8 +654,6 @@ class ScreenHeaderComponent extends PureComponent ); - const togglePluginEditorButton = renderTogglePluginEditorButton(this.styles(), () => CommandService.instance().execute('toggleEditorPlugin'), false); - return ( @@ -676,7 +676,6 @@ class ScreenHeaderComponent extends PureComponent