🐛 Fix problem with grid assignments

This commit is contained in:
alonso.torres 2025-07-09 13:04:34 +02:00 committed by Alonso Torres
parent 51a6d61be6
commit a003687256

View file

@ -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;
}