[Monodevelop-patches-list] r2327 - in trunk/MonoDevelop/Core/src/MonoDevelop.Base: . Gui/Dialogs
Todd Berman <tberman@sevenl.net>
tberman at mono-cvs.ximian.com
Fri Mar 11 01:38:16 EST 2005
Author: tberman
Date: 2005-03-11 01:38:16 -0500 (Fri, 11 Mar 2005)
New Revision: 2327
Modified:
trunk/MonoDevelop/Core/src/MonoDevelop.Base/ChangeLog
trunk/MonoDevelop/Core/src/MonoDevelop.Base/Gui/Dialogs/SplashScreen.cs
Log:
2005-03-10 Todd Berman <tberman at off.net>
* Gui/Dialogs/SplashScreen.cs: Use an alignment, not labels.
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Base/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Base/ChangeLog 2005-03-11 06:15:27 UTC (rev 2326)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Base/ChangeLog 2005-03-11 06:38:16 UTC (rev 2327)
@@ -1,3 +1,7 @@
+2005-03-10 Todd Berman <tberman at off.net>
+
+ * Gui/Dialogs/SplashScreen.cs: Use an alignment, not labels.
+
2005-03-10 Christian Hergert <christian.hergert at gmail.com>
* Gui/Dialogs/SplashScreen.cs: Add progress bar with status
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Base/Gui/Dialogs/SplashScreen.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Base/Gui/Dialogs/SplashScreen.cs 2005-03-11 06:15:27 UTC (rev 2326)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Base/Gui/Dialogs/SplashScreen.cs 2005-03-11 06:38:16 UTC (rev 2327)
@@ -30,11 +30,11 @@
image.Show ();
HBox hbox = new HBox();
- hbox.PackStart(new Label(" "), false, false, 0);
+ Alignment align = new Alignment (0.5f, 1.0f, 0.90f, 1.0f);
progress = new ProgressBar();
progress.Fraction = 0.00;
- hbox.PackStart(progress, true, true, 0);
- hbox.PackStart(new Label(" "), false, false, 0);
+ align.Add (progress);
+ hbox.PackStart (align, true, true, 0);
hbox.ShowAll();
vbox = new VBox();
More information about the Monodevelop-patches-list
mailing list