We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 215f5ac commit 82ca8c3Copy full SHA for 82ca8c3
Flow.Launcher/SettingPages/ViewModels/SettingsPaneThemeViewModel.cs
@@ -3,6 +3,7 @@
3
using System.Globalization;
4
using System.IO;
5
using System.Linq;
6
+using System.Security.Policy;
7
using System.Windows;
8
using System.Windows.Media;
9
using System.Windows.Media.Imaging;
@@ -181,12 +182,23 @@ public List<AnimationSpeed> AnimationSpeeds
181
182
return speeds;
183
}
184
-
185
public bool UseSound
186
{
187
get => Settings.UseSound;
188
set => Settings.UseSound = value;
189
190
+ public bool CheckMediaPlayer
191
+ {
192
+ get
193
194
+ if (Settings.WMPInstalled)
195
196
+ return true;
197
+ }
198
+ else { return false; }
199
200
+ set { }
201
202
203
public double SoundEffectVolume
204
0 commit comments