statusicon: Fix default icon on Ubuntu. #988

This commit is contained in:
Hylke Bons 2012-09-24 22:47:35 +02:00
parent dd1ab23c8c
commit bf5f999718
2 changed files with 3 additions and 4 deletions

View file

@ -61,7 +61,7 @@
} }
body { body {
background-color: #fff; background-color: #fefefe;
color: <!-- $body-color -->; color: <!-- $body-color -->;
font-size: <!-- $body-font-size -->; font-size: <!-- $body-font-size -->;
font-family: <!-- $body-font-family -->; font-family: <!-- $body-font-family -->;

View file

@ -50,9 +50,8 @@ namespace SparkleShare {
public SparkleStatusIcon () public SparkleStatusIcon ()
{ {
#if HAVE_APP_INDICATOR #if HAVE_APP_INDICATOR
this.indicator = new ApplicationIndicator ("sparkleshare", this.indicator = new ApplicationIndicator ("sparkleshare", "sparkleshare", Category.ApplicationStatus);
"process-syncing-i", Category.ApplicationStatus); this.indicator.IconName = "sparkleshare";
this.indicator.Status = Status.Active; this.indicator.Status = Status.Active;
#else #else
this.status_icon = new StatusIcon (); this.status_icon = new StatusIcon ();