mirror of
https://github.com/penpot/penpot.git
synced 2025-12-11 22:14:05 +01:00
🐛 Fix problem with grid assignments
This commit is contained in:
committed by
Alonso Torres
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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user