Skip to content

Commit

Permalink
Fix Load not loading Alpha/Scale properly
Browse files Browse the repository at this point in the history
The values were being loaded into the InputField but they didn't load
into the Overlay unless you clicked them
  • Loading branch information
Hotrian committed Jun 26, 2016
1 parent d567da3 commit 58b0f9b
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,13 @@ public void OnLoadPressed() // Load an existing save
ScaleStartField.text = settings.ScaleStart.ToString();
ScaleEndField.text = settings.ScaleEnd.ToString();
ScaleSpeedField.text = settings.ScaleSpeed.ToString();

AlphaStartField.onEndEdit.Invoke("");
AlphaEndField.onEndEdit.Invoke("");
AlphaSpeedField.onEndEdit.Invoke("");
ScaleStartField.onEndEdit.Invoke("");
ScaleEndField.onEndEdit.Invoke("");
ScaleSpeedField.onEndEdit.Invoke("");
}

public void OnSavePressed()
Expand Down

0 comments on commit 58b0f9b

Please sign in to comment.