Browse Source

[fx] fixup compile

Clément Espeute 7 months ago
parent
commit
751078e746
1 changed files with 1 additions and 1 deletions
  1. 1 1
      hide/comp/CurveEditor.hx

+ 1 - 1
hide/comp/CurveEditor.hx

@@ -459,7 +459,7 @@ class OverviewEditor extends Component implements CurveEditorComponent
 
 
 		for (c in this.curveEditor.curves)
 		for (c in this.curveEditor.curves)
 			if (c.selected || this.curveEditor.curves.length == 1) {
 			if (c.selected || this.curveEditor.curves.length == 1) {
-				var previousKeyVal = c.getVal(time, true);
+				var previousKeyVal = c.getVal(time);
 				c.addKey(time, previousKeyVal, c.keyMode);
 				c.addKey(time, previousKeyVal, c.keyMode);
 			}
 			}