From f8f322da303f16cdcf1fd243b8b2946de8492652 Mon Sep 17 00:00:00 2001 From: Alex Hudson Date: Thu, 29 Jul 2010 10:02:44 +0100 Subject: [PATCH] Revert "Don't resize icons to the final presented size, since we have multiple" This reverts commit f2366a92555cf94043a1228e68a67284f88623a4. --- SparkleShare/SparkleSpinner.cs | 2 +- SparkleShare/SparkleStatusIcon.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SparkleShare/SparkleSpinner.cs b/SparkleShare/SparkleSpinner.cs index 0911a919..e18d7e5d 100644 --- a/SparkleShare/SparkleSpinner.cs +++ b/SparkleShare/SparkleSpinner.cs @@ -39,7 +39,7 @@ namespace SparkleShare { CurrentStep = 0; Size = 16; - Gdk.Pixbuf spinner_gallery = SparkleHelpers.GetIcon ("process-working", Size * 8); + Gdk.Pixbuf spinner_gallery = SparkleHelpers.GetIcon ("process-working", Size); int frames_in_width = spinner_gallery.Width / Size; int frames_in_height = spinner_gallery.Height / Size; diff --git a/SparkleShare/SparkleStatusIcon.cs b/SparkleShare/SparkleStatusIcon.cs index 991c8821..7189bcf4 100644 --- a/SparkleShare/SparkleStatusIcon.cs +++ b/SparkleShare/SparkleStatusIcon.cs @@ -69,7 +69,7 @@ namespace SparkleShare { FrameNumber = 0; AnimationFrames = new Gdk.Pixbuf [5]; - Gdk.Pixbuf frames_pixbuf = SparkleHelpers.GetIcon ("process-syncing-sparkleshare", 120); + Gdk.Pixbuf frames_pixbuf = SparkleHelpers.GetIcon ("process-syncing-sparkleshare", 24); for (int i = 0; i < AnimationFrames.Length; i++) AnimationFrames [i] = new Gdk.Pixbuf (frames_pixbuf, (i * 24), 0, 24, 24);