From 3526c299ecdd0625d10ff0b63fa5f6a3e426d242 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Tue, 29 Nov 2016 16:24:37 +0900 Subject: [PATCH] Reformat code. --- osu.Game/Graphics/UserInterface/BackButton.cs | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/osu.Game/Graphics/UserInterface/BackButton.cs b/osu.Game/Graphics/UserInterface/BackButton.cs index f87e469b4a..0f904eec77 100644 --- a/osu.Game/Graphics/UserInterface/BackButton.cs +++ b/osu.Game/Graphics/UserInterface/BackButton.cs @@ -16,19 +16,19 @@ namespace osu.Game.Graphics.UserInterface { private TextAwesome icon; - private Container leftContainer; - private Container rightContainer; + private Container leftContainer; + private Container rightContainer; private const double transform_time = 300.0; - private const int pulse_length = 250; + private const int pulse_length = 250; private const float shear = 0.1f; - private const int extend_length = 60; - private const int initial_extend_length = 40; + private const int extend_length = 60; + private const int initial_extend_length = 40; - private const int width_extended = 140; - private const int width_retracted = 120; + private const int width_extended = 140; + private const int width_retracted = 120; public BackButton() { @@ -44,7 +44,7 @@ namespace osu.Game.Graphics.UserInterface Anchor = Anchor.TopLeft, RelativeSizeAxes = Axes.Y, Width = initial_extend_length, - Children = new Drawable[] + Children = new Drawable[] { new Box { @@ -75,8 +75,8 @@ namespace osu.Game.Graphics.UserInterface Origin = Anchor.TopLeft, Anchor = Anchor.TopLeft, RelativeSizeAxes = Axes.Both, - Shear = new Vector2(shear, 0), - EdgeSmoothness = new Vector2(1.5f, 0), + Shear = new Vector2(shear, 0), + EdgeSmoothness = new Vector2(1.5f, 0), }, new SpriteText { @@ -152,7 +152,7 @@ namespace osu.Game.Graphics.UserInterface { RelativeSizeAxes = Axes.Both, Shear = new Vector2(shear, 0), - Colour = new Color4(255,255,255,128), + Colour = new Color4(255, 255, 255, 128), }; Add(flash);