Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
hbons committed Oct 15, 2012
1 parent af1608a commit c036868
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions SparkleShare/Linux/SparkleStatusIcon.cs
Expand Up @@ -44,14 +44,13 @@ public class SparkleStatusIcon {
private Gdk.Pixbuf syncing_image = SparkleUIHelpers.GetIcon ("process-syncing", 24);
private Gdk.Pixbuf syncing_error_image = SparkleUIHelpers.GetIcon ("process-syncing-error", 24);
#endif



public SparkleStatusIcon ()
{
#if HAVE_APP_INDICATOR
this.indicator = new ApplicationIndicator ("sparkleshare", "sparkleshare", Category.ApplicationStatus);
this.indicator.IconName = "sparkleshare";
this.indicator.IconName = "process-syncing-idle";
this.indicator.Status = Status.Active;
#else
this.status_icon = new StatusIcon ();
Expand All @@ -68,7 +67,7 @@ public SparkleStatusIcon ()
switch (state) {
case IconState.Idle: {
#if HAVE_APP_INDICATOR
this.indicator.IconName = "sparkleshare";
this.indicator.IconName = "process-syncing-idle";
#else
this.status_icon.Pixbuf = this.syncing_idle_image;
#endif
Expand Down

0 comments on commit c036868

Please sign in to comment.