Repository: cordova-plugins
Updated Branches:
  refs/heads/master 2c4701802 -> e638d0828


calling styleDefault and styleLightContent should only affect text color


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugins/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugins/commit/47d55a03
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugins/tree/47d55a03
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugins/diff/47d55a03

Branch: refs/heads/master
Commit: 47d55a03840fb99961af554459a84e3eede211be
Parents: 2c47018
Author: Jesse MacFadyen <[email protected]>
Authored: Wed Mar 12 12:00:11 2014 -0700
Committer: Jesse MacFadyen <[email protected]>
Committed: Wed Mar 12 12:00:11 2014 -0700

----------------------------------------------------------------------
 statusbar/src/wp/StatusBar.cs | 5 -----
 1 file changed, 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugins/blob/47d55a03/statusbar/src/wp/StatusBar.cs
----------------------------------------------------------------------
diff --git a/statusbar/src/wp/StatusBar.cs b/statusbar/src/wp/StatusBar.cs
index c20f680..ec83ca8 100644
--- a/statusbar/src/wp/StatusBar.cs
+++ b/statusbar/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;
             });
         }
 

Reply via email to