From 9369f5e428c604073aaad148b9a6141da6403f00 Mon Sep 17 00:00:00 2001 From: "mathieu.brunot" Date: Fri, 22 Feb 2019 00:21:19 +0100 Subject: [PATCH] :art: Change position of text center align button --- .../src/uxbox/main/ui/workspace/sidebar/options/text.cljs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/uxbox/main/ui/workspace/sidebar/options/text.cljs b/frontend/src/uxbox/main/ui/workspace/sidebar/options/text.cljs index 4de51bb522..dfe0ca2838 100644 --- a/frontend/src/uxbox/main/ui/workspace/sidebar/options/text.cljs +++ b/frontend/src/uxbox/main/ui/workspace/sidebar/options/text.cljs @@ -139,12 +139,12 @@ [:span {:class (when (= text-align "left") "current") :on-click #(on-font-align-change % "left")} i/align-left] - [:span {:class (when (= text-align "right") "current") - :on-click #(on-font-align-change % "right")} - i/align-right] [:span {:class (when (= text-align "center") "current") :on-click #(on-font-align-change % "center")} i/align-center] + [:span {:class (when (= text-align "right") "current") + :on-click #(on-font-align-change % "right")} + i/align-right] [:span {:class (when (= text-align "justify") "current") :on-click #(on-font-align-change % "justify")} i/align-justify]]]])))