diff --git a/SparkleShare/SparkleDialog.cs b/SparkleShare/SparkleDialog.cs index 054b6f3a..b1fd5de0 100644 --- a/SparkleShare/SparkleDialog.cs +++ b/SparkleShare/SparkleDialog.cs @@ -34,6 +34,7 @@ namespace SparkleShare { private Button AddButton; private ComboBoxEntry RemoteUrlCombo; + private Table Table; public SparkleDialog () : base ("") { @@ -83,7 +84,7 @@ namespace SparkleShare { ButtonBox.Add (CancelButton); ButtonBox.Add (AddButton); - Table Table = new Table(3, 2, false); + Table = new Table(3, 2, false); Table.RowSpacing = 6; Table.BorderWidth = 6; diff --git a/SparkleShare/SparkleSpinner.cs b/SparkleShare/SparkleSpinner.cs index 038f9d6c..4ab29a71 100644 --- a/SparkleShare/SparkleSpinner.cs +++ b/SparkleShare/SparkleSpinner.cs @@ -35,7 +35,7 @@ namespace SparkleShare { CycleDuration = 750; CurrentStep = 0; - Size = 48; + Size = 24; Gdk.Pixbuf SpinnerGallery = SparkleHelpers.GetIcon ("process-working", Size);