From 08bdea0036397bd2618aa9e8177c13483989c947 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Dach?= Date: Thu, 12 Oct 2023 19:04:47 +0200 Subject: [PATCH] Reformat code --- .../Sections/Input/KeyBindingConflictPopover.cs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/osu.Game/Overlays/Settings/Sections/Input/KeyBindingConflictPopover.cs b/osu.Game/Overlays/Settings/Sections/Input/KeyBindingConflictPopover.cs index 9f5766f29d..9634f30451 100644 --- a/osu.Game/Overlays/Settings/Sections/Input/KeyBindingConflictPopover.cs +++ b/osu.Game/Overlays/Settings/Sections/Input/KeyBindingConflictPopover.cs @@ -55,8 +55,14 @@ namespace osu.Game.Overlays.Settings.Sections.Input Text = "The binding you've selected conflicts with another existing binding.", Margin = new MarginPadding { Bottom = 10 } }, - existingPreview = new ConflictingKeyBindingPreview(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), + existingPreview = new ConflictingKeyBindingPreview( + 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 { RelativeSizeAxes = Axes.X,