From f68ab36a81ede5f94c59ed2e39e497fad546c823 Mon Sep 17 00:00:00 2001 From: Tienson Qin Date: Tue, 2 Dec 2025 15:45:55 +0800 Subject: [PATCH] fix: same indent/outdent order for both selection and editor bar --- src/main/mobile/components/selection_toolbar.cljs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/mobile/components/selection_toolbar.cljs b/src/main/mobile/components/selection_toolbar.cljs index 57814bc891..9c3199d342 100644 --- a/src/main/mobile/components/selection_toolbar.cljs +++ b/src/main/mobile/components/selection_toolbar.cljs @@ -34,16 +34,16 @@ :handler (fn [] (editor-handler/copy-selection-blocks false) (close!))} - {:id "indent" - :label "Indent" - :system-icon "arrow.right" - :handler (fn [] - (editor-handler/on-tab :right))} {:id "outdent" :label "Outdent" :system-icon "arrow.left" :handler (fn [] (editor-handler/on-tab :left))} + {:id "indent" + :label "Indent" + :system-icon "arrow.right" + :handler (fn [] + (editor-handler/on-tab :right))} {:id "delete" :label "Delete" :system-icon "trash"