From b3c1cedcc8c6405906ae3bb0986cddfa457961a2 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 18 Feb 2016 22:43:42 +0200 Subject: [PATCH] Show the drawtools first on right sidebar. --- src/uxbox/ui/workspace/sidebar.cljs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/uxbox/ui/workspace/sidebar.cljs b/src/uxbox/ui/workspace/sidebar.cljs index ec38bf06c..626a9344c 100644 --- a/src/uxbox/ui/workspace/sidebar.cljs +++ b/src/uxbox/ui/workspace/sidebar.cljs @@ -44,10 +44,10 @@ (html [:aside#settings-bar.settings-bar [:div.settings-bar-inside - (when (contains? flags :element-options) - (options-toolbox)) (when (contains? flags :drawtools) (draw-toolbox)) + (when (contains? flags :element-options) + (options-toolbox)) (when (contains? flags :icons) (icons-toolbox))]])))