mirror of
https://github.com/Team4388/2025RidgeScape.git
synced 2026-06-09 00:38:02 -06:00
fix trim dump iteration
This commit is contained in:
@@ -56,7 +56,7 @@ public class Trim {
|
||||
trimElement.setValue(currentValue);
|
||||
modified = true;
|
||||
}
|
||||
|
||||
|
||||
public void stepUp() {
|
||||
this.currentValue += step;
|
||||
clampModify();
|
||||
@@ -109,7 +109,7 @@ public class Trim {
|
||||
}
|
||||
|
||||
public static void dumpAll() {
|
||||
for (int i = 0; i > trims.size(); i++) {
|
||||
for (int i = 0; i < trims.size(); i++) {
|
||||
Trim trim = trims.get(i);
|
||||
if (trim.isModified())
|
||||
trim.dump();
|
||||
|
||||
Reference in New Issue
Block a user