From ab8f1b4ae814ddecf0ef73293e453fd6d1c574a9 Mon Sep 17 00:00:00 2001 From: Alex Hudson Date: Tue, 14 Jun 2011 10:39:16 +0100 Subject: [PATCH] Can't remove from GtkWidgets - is Reparent what it's really doing? --- SparkleShare/SparkleIntro.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SparkleShare/SparkleIntro.cs b/SparkleShare/SparkleIntro.cs index 93469c6a..7a0478f1 100644 --- a/SparkleShare/SparkleIntro.cs +++ b/SparkleShare/SparkleIntro.cs @@ -559,7 +559,7 @@ namespace SparkleShare { }; if (this.progress_bar.Parent != null) - this.progress_bar.Parent.Remove (this.progress_bar); + layout_vertical.Reparent(this.progress_bar); layout_vertical.PackStart (this.progress_bar, false, false, 54);