0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-13 16:21:57 -05:00

🐛 Fix text inputs to allow negative values

This commit is contained in:
eva 2022-01-04 12:03:04 +01:00 committed by Alonso Torres
parent 6afc734e91
commit 533cac7881
2 changed files with 3 additions and 2 deletions

View file

@ -17,6 +17,7 @@
### :bug: Bugs fixed
- Fix line-height and letter-spacing inputs to allow negative values [Taiga #2381](https://tree.taiga.io/project/penpot/issue/2381)
- Fix typo in Handoff tooltip [Taiga #2428](https://tree.taiga.io/project/penpot/issue/2428).
- Fix crash when pressing Shift+1 on empty file [#1435](https://github.com/penpot/penpot/issues/1435).
- Fix masked group resize strange behavior [Taiga #2317](https://tree.taiga.io/project/penpot/issue/2317).

View file

@ -362,7 +362,7 @@
[:input.input-text
{:type "number"
:step "0.1"
:min "0"
:min "-200"
:max "200"
:value (attr->string line-height)
:placeholder (tr "settings.multiple")
@ -376,7 +376,7 @@
[:input.input-text
{:type "number"
:step "0.1"
:min "0"
:min "-200"
:max "200"
:value (attr->string letter-spacing)
:placeholder (tr "settings.multiple")