Merge pull request #7257 from penpot/azazeln28-fix-issue-11992-cannot-move-elements-up-or-down

🐛 Fix moving elements up or down while pressing alt
This commit is contained in:
Alejandro Alonso
2025-09-09 11:07:58 +02:00
committed by GitHub
2 changed files with 3 additions and 2 deletions

View File

@@ -45,6 +45,7 @@
- Layout item tokens should be unapplied when moving out of a layout [Taiga #11012](https://tree.taiga.io/project/penpot/issue/11012)
- Fix incorrect date displayed for support plan [Taiga #11986](https://tree.taiga.io/project/penpot/issue/11986)
- Fix can't import 'borderWidth' type token [#132](https://github.com/tokens-studio/penpot/issues/132)
- Fix moving elements up or down while pressing alt [Taiga Issue #11992](https://tree.taiga.io/project/penpot/issue/11992)
## 2.9.0

View File

@@ -233,12 +233,12 @@
:fn #(emit-when-no-readonly (dwt/move-selected :left true))}
:move-unit-up {:tooltip ds/up-arrow
:command ["up"]
:command ["up" "alt+up"]
:subsections [:modify-layers]
:fn #(emit-when-no-readonly (dwt/move-selected :up false))}
:move-unit-down {:tooltip ds/down-arrow
:command ["down"]
:command ["down" "alt+down"]
:subsections [:modify-layers]
:fn #(emit-when-no-readonly (dwt/move-selected :down false))}