Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Maupin <ermaup@microsoft.com>2018-11-01 23:01:18 +0300
committerEric Maupin <ermaup@microsoft.com>2018-11-12 22:17:15 +0300
commit76b6dd232566da710d715c9bf8dc93ae43552656 (patch)
tree5dc4e276ec93929bca39183a280a30c5a7c8398d
parentae0f751c3e18dbbb44049dc510004f6f637815f5 (diff)
[mac] Use right light appearance in standalone
-rw-r--r--Xamarin.PropertyEditing.Mac/Themes/MacThemeManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.PropertyEditing.Mac/Themes/MacThemeManager.cs b/Xamarin.PropertyEditing.Mac/Themes/MacThemeManager.cs
index f96724f..667e6b1 100644
--- a/Xamarin.PropertyEditing.Mac/Themes/MacThemeManager.cs
+++ b/Xamarin.PropertyEditing.Mac/Themes/MacThemeManager.cs
@@ -11,7 +11,7 @@ namespace Xamarin.PropertyEditing.Themes
private Dictionary<string, NSImage> themeCache = new Dictionary<string, NSImage> ();
NSAppearance DarkAppearance = NSAppearance.GetAppearance (NSAppearance.NameVibrantDark);
- NSAppearance LightAppearance = NSAppearance.GetAppearance (NSAppearance.NameVibrantLight);
+ NSAppearance LightAppearance = NSAppearance.GetAppearance (NSAppearance.NameAqua);
protected override void SetTheme ()
{