mirror of
https://github.com/ppy/osu
synced 2025-04-01 22:48:33 +00:00
Set default for bindable in object initializer
Fixes the CI failure.
This commit is contained in:
parent
fb305130de
commit
47948d7b34
@ -37,10 +37,10 @@ namespace osu.Game.Screens.Edit.Verify
|
|||||||
{
|
{
|
||||||
Anchor = Anchor.CentreLeft,
|
Anchor = Anchor.CentreLeft,
|
||||||
Origin = Anchor.CentreLeft,
|
Origin = Anchor.CentreLeft,
|
||||||
LabelText = issueType.ToString()
|
LabelText = issueType.ToString(),
|
||||||
|
Current = { Default = !hiddenIssueTypes.Contains(issueType) }
|
||||||
};
|
};
|
||||||
|
|
||||||
checkbox.Current.Default = !hiddenIssueTypes.Contains(issueType);
|
|
||||||
checkbox.Current.SetDefault();
|
checkbox.Current.SetDefault();
|
||||||
checkbox.Current.BindValueChanged(state =>
|
checkbox.Current.BindValueChanged(state =>
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user