From 3d5ed0a4f1d80825158d35d215e75303f4df6fcc Mon Sep 17 00:00:00 2001 From: Jesse MacFadyen Date: Wed, 12 Mar 2014 12:00:11 -0700 Subject: [PATCH] calling styleDefault and styleLightContent should only affect text color --- src/wp/StatusBar.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/wp/StatusBar.cs b/src/wp/StatusBar.cs index c20f680..ec83ca8 100644 --- a/src/wp/StatusBar.cs +++ b/src/wp/StatusBar.cs @@ -79,10 +79,7 @@ namespace WPCordovaClassLib.Cordova.Commands { //exec(null, null, "StatusBar", "styleDefault", []); Deployment.Current.Dispatcher.BeginInvoke(() => { - SystemTray.BackgroundColor = Colors.White; SystemTray.ForegroundColor = Colors.Black; - SystemTray.Opacity = 1.0d; - }); } @@ -91,9 +88,7 @@ namespace WPCordovaClassLib.Cordova.Commands Deployment.Current.Dispatcher.BeginInvoke(() => { - SystemTray.BackgroundColor = Colors.Black; SystemTray.ForegroundColor = Colors.White; - SystemTray.Opacity = 1.0d; }); }