mirror of
https://github.com/penpot/penpot.git
synced 2025-07-18 23:47:13 +02:00
🐛 Fix problem with grid assignments
This commit is contained in:
parent
51a6d61be6
commit
a003687256
1 changed files with 1 additions and 2 deletions
|
@ -379,10 +379,9 @@ fn set_fr_value(
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
// We finish when we cannot reduce the tracks more or we've allocated all
|
||||
// the space
|
||||
if free_frs == 0 || pending >= 0.0 {
|
||||
if free_frs == 0 || pending >= -0.01 {
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue