mirror of https://github.com/penpot/penpot.git
🐛 Fix problem with grid assignments
This commit is contained in:
parent
51a6d61be6
commit
a003687256
|
|
@ -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…
Reference in New Issue