mirror of
https://github.com/osukey/osukey.git
synced 2025-05-17 11:37:32 +09:00
Remove unnecessary string interpolation
This commit is contained in:
parent
2f15d558a3
commit
0d3a95d8fc
@ -75,7 +75,7 @@ namespace osu.Game.Screens.Edit.Compose.Components.Timeline
|
|||||||
};
|
};
|
||||||
|
|
||||||
volume.BindValueChanged(volume => volumeBox.Height = volume.NewValue / 100f, true);
|
volume.BindValueChanged(volume => volumeBox.Height = volume.NewValue / 100f, true);
|
||||||
bank.BindValueChanged(bank => text.Text = $"{bank.NewValue}", true);
|
bank.BindValueChanged(bank => text.Text = bank.NewValue, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user