Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ protected override IEnumerable<Drawable> CreateSettings()
{
Text = "Use Start Value",
TooltipText = "Enables whether start values should be used.",
CurrentValue = shader.UseStartValue,
Comment thread
menvae marked this conversation as resolved.
Outdated
Bindable = new Bindable<bool>(shader.UseStartValue),
OnValueChanged = enabled =>
{
Expand Down
1 change: 1 addition & 0 deletions fluXis/Screens/Edit/UI/Variable/EditorVariableToggle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ private void load()
Height = 32;

Bindable ??= new Bindable<bool>(CurrentValue);
Bindable.ValueChanged += valueChanged;

InternalChildren = new Drawable[]
{
Expand Down
Loading