From 806dd3aae720c592277d164d04b97fa2de0ecfc3 Mon Sep 17 00:00:00 2001 From: Darth Affe Date: Sat, 6 Oct 2018 12:00:13 +0200 Subject: [PATCH] Fixed default value of the background brush --- KeyboardAudioVisualizer/App.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KeyboardAudioVisualizer/App.xaml.cs b/KeyboardAudioVisualizer/App.xaml.cs index bdb8679..0b3fda0 100644 --- a/KeyboardAudioVisualizer/App.xaml.cs +++ b/KeyboardAudioVisualizer/App.xaml.cs @@ -58,7 +58,7 @@ namespace KeyboardAudioVisualizer settings = new Settings { Version = Settings.CURRENT_VERSION, - Background = new LinearGradient(new GradientStop(0.1, new Color(64, 0, 0, 0))) + Background = new LinearGradient(new GradientStop(0.5, new Color(64, 0, 0, 0))) }; _taskbarIcon.ShowBalloonTip("Keyboard Audio-Visualizer is starting in the tray!", "Click on the icon to open the configuration.", BalloonIcon.Info); }