diff options
Diffstat (limited to 'views/background.cc')
-rw-r--r-- | views/background.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/views/background.cc b/views/background.cc index f135138..ba6216f 100644 --- a/views/background.cc +++ b/views/background.cc @@ -93,12 +93,12 @@ Background* Background::CreateStandardPanelBackground() { //static Background* Background::CreateVerticalGradientBackground( const SkColor& color1, const SkColor& color2) { - Background* background = CreateBackgroundPainter( - true, Painter::CreateVerticalGradient(color1, color2)); - background->SetNativeControlColor( - color_utils::AlphaBlend(color1, color2, 128)); + Background* background = CreateBackgroundPainter( + true, Painter::CreateVerticalGradient(color1, color2)); + background->SetNativeControlColor( + color_utils::AlphaBlend(color1, color2, 128)); - return background; + return background; } //static |