mirror of
https://github.com/penpot/penpot.git
synced 2025-02-15 03:28:25 -05:00
Merge remote-tracking branch 'origin/main' into staging
This commit is contained in:
commit
29ec7ca0c6
3 changed files with 4 additions and 2 deletions
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
### :bug: Bugs fixed
|
### :bug: Bugs fixed
|
||||||
|
|
||||||
|
- Fix nudge error
|
||||||
- Fix firefox changing layer color type is not applied [Taiga #4292](https://tree.taiga.io/project/penpot/issue/4292)
|
- Fix firefox changing layer color type is not applied [Taiga #4292](https://tree.taiga.io/project/penpot/issue/4292)
|
||||||
- Fix justify alignes text left [Taiga #4322](https://tree.taiga.io/project/penpot/issue/4322)
|
- Fix justify alignes text left [Taiga #4322](https://tree.taiga.io/project/penpot/issue/4322)
|
||||||
- Fix text out of borders with "auto width" and center align [Taiga #4308](https://tree.taiga.io/project/penpot/issue/4308)
|
- Fix text out of borders with "auto width" and center align [Taiga #4308](https://tree.taiga.io/project/penpot/issue/4308)
|
||||||
|
|
|
@ -287,7 +287,8 @@
|
||||||
props (-> (audit/extract-utm-params params)
|
props (-> (audit/extract-utm-params params)
|
||||||
(merge (:props params))
|
(merge (:props params))
|
||||||
(merge {:viewed-tutorial? false
|
(merge {:viewed-tutorial? false
|
||||||
:viewed-walkthrough? false})
|
:viewed-walkthrough? false
|
||||||
|
:nudge {:big 10 :small 1}})
|
||||||
(db/tjson))
|
(db/tjson))
|
||||||
|
|
||||||
password (if-let [password (:password params)]
|
password (if-let [password (:password params)]
|
||||||
|
|
|
@ -697,7 +697,7 @@
|
||||||
stopper (->> move-events
|
stopper (->> move-events
|
||||||
(rx/debounce 100)
|
(rx/debounce 100)
|
||||||
(rx/take 1))
|
(rx/take 1))
|
||||||
scale (if shift? (gpt/point (:big nudge)) (gpt/point (:small nudge)))
|
scale (if shift? (gpt/point (or (:big nudge) 10)) (gpt/point (or (:small nudge) 1)))
|
||||||
mov-vec (gpt/multiply (get-displacement direction) scale)]
|
mov-vec (gpt/multiply (get-displacement direction) scale)]
|
||||||
|
|
||||||
(rx/concat
|
(rx/concat
|
||||||
|
|
Loading…
Add table
Reference in a new issue