From 87638e6d7fddc3124b88907d0bfa90c99d388463 Mon Sep 17 00:00:00 2001 From: Robin Kuck Date: Thu, 29 Mar 2012 15:50:46 +0200 Subject: [PATCH] lazy commit --- SparkleShare/Linux/SparkleStatusIcon.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SparkleShare/Linux/SparkleStatusIcon.cs b/SparkleShare/Linux/SparkleStatusIcon.cs index 5c7bae9b..bcff6644 100644 --- a/SparkleShare/Linux/SparkleStatusIcon.cs +++ b/SparkleShare/Linux/SparkleStatusIcon.cs @@ -74,7 +74,7 @@ namespace SparkleShare { if (icon_frame > -1) { #if HAVE_APP_INDICATOR string icon_name = "process-syncing-sparkleshare-"; - for (int i = 0; i <= this.frame_number; i++) + for (int i = 0; i <= icon_frame; i++) icon_name += "i"; this.indicator.IconName = icon_name; @@ -84,7 +84,7 @@ namespace SparkleShare { } else { #if HAVE_APP_INDICATOR - this.indicator.IconName = sparkleshare-syncing-error; + this.indicator.IconName = "sparkleshare-syncing-error"; #else this.status_icon.Pixbuf = SparkleUIHelpers.GetIcon ("sparkleshare-syncing-error", 24); #endif