File tree 3 files changed +2
-4
lines changed
3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 6
6
:condition-always-true {:level :warning }
7
7
:docstring-leading-trailing-whitespace {:level :warning }
8
8
:equals-float {:level :warning }
9
- :equals-false {:level :warning }
10
- :equals-true {:level :warning }
11
9
:def-fn {:level :warning }
12
10
:reduce-without-init {:level :warning }
13
11
:keyword-binding {:level :warning }
Original file line number Diff line number Diff line change 85
85
(let [attrs (->> selected-elements
86
86
(map utils.element/attributes)
87
87
(apply utils.map/merge-common-with
88
- (fn [v1 v2] (if (= v1 v2) v1 nil ))))
88
+ (fn [v1 v2] (when (= v1 v2) v1))))
89
89
attrs (if multiple-selected?
90
90
(dissoc attrs :id )
91
91
(sort-by (fn [[id _]]
Original file line number Diff line number Diff line change 52
52
[orientation step font-size text]
53
53
(let [vertical (= orientation :vertical )]
54
54
[:text {:x (if vertical 19 (+ step 4 ))
55
- :y (if vertical (- step 8 ) (+ font-size 1 ))
55
+ :y (if vertical (- step 8 ) (inc font-size))
56
56
:writing-mode (when vertical " vertical-rl" )
57
57
:fill " var(--font-color)"
58
58
:font-size font-size
You can’t perform that action at this time.
0 commit comments