mirror of
https://github.com/ppy/osu.git
synced 2025-02-15 00:13:19 +08:00
Reformat code
This commit is contained in:
parent
991e425b9a
commit
08bdea0036
@ -55,8 +55,14 @@ namespace osu.Game.Overlays.Settings.Sections.Input
|
|||||||
Text = "The binding you've selected conflicts with another existing binding.",
|
Text = "The binding you've selected conflicts with another existing binding.",
|
||||||
Margin = new MarginPadding { Bottom = 10 }
|
Margin = new MarginPadding { Bottom = 10 }
|
||||||
},
|
},
|
||||||
existingPreview = new ConflictingKeyBindingPreview(ConflictInfo.Value.Existing.Action, ConflictInfo.Value.Existing.CombinationWhenChosen, ConflictInfo.Value.Existing.CombinationWhenNotChosen),
|
existingPreview = new ConflictingKeyBindingPreview(
|
||||||
newPreview = new ConflictingKeyBindingPreview(ConflictInfo.Value.New.Action, ConflictInfo.Value.New.CombinationWhenChosen, ConflictInfo.Value.New.CombinationWhenNotChosen),
|
ConflictInfo.Value.Existing.Action,
|
||||||
|
ConflictInfo.Value.Existing.CombinationWhenChosen,
|
||||||
|
ConflictInfo.Value.Existing.CombinationWhenNotChosen),
|
||||||
|
newPreview = new ConflictingKeyBindingPreview(
|
||||||
|
ConflictInfo.Value.New.Action,
|
||||||
|
ConflictInfo.Value.New.CombinationWhenChosen,
|
||||||
|
ConflictInfo.Value.New.CombinationWhenNotChosen),
|
||||||
new Container
|
new Container
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.X,
|
RelativeSizeAxes = Axes.X,
|
||||||
|
Loading…
Reference in New Issue
Block a user