[Monodevelop-patches-list] r1695 - in trunk/MonoDevelop/src/Main/Base: . Gui/Dialogs
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Sun Jun 6 12:50:28 EDT 2004
Author: jluke
Date: 2004-06-06 12:50:27 -0400 (Sun, 06 Jun 2004)
New Revision: 1695
Modified:
trunk/MonoDevelop/src/Main/Base/ChangeLog
trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/CommonAboutDialog.cs
Log:
fix 59652
Modified: trunk/MonoDevelop/src/Main/Base/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/Main/Base/ChangeLog 2004-06-03 21:59:22 UTC (rev 1694)
+++ trunk/MonoDevelop/src/Main/Base/ChangeLog 2004-06-06 16:50:27 UTC (rev 1695)
@@ -1,3 +1,8 @@
+2004-06-06 John Luke <jluke at cfl.rr.com>
+
+ * Gui/Dialogs/CommonAboutDialog.cs: make the scrollbox not expand
+ fixes bug #59652
+
2004-06-02 Todd Berman <tberman at sevenl.net>
* Commands/ProjectBrowserCommands/FolderNodeCommands.cs: call new func.
Modified: trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/CommonAboutDialog.cs
===================================================================
--- trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/CommonAboutDialog.cs 2004-06-03 21:59:22 UTC (rev 1694)
+++ trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/CommonAboutDialog.cs 2004-06-06 16:50:27 UTC (rev 1695)
@@ -143,7 +143,7 @@
//ResourceService resourceService = (ResourceService) ServiceManager.Services.GetService(typeof (IResourceService));
aboutPictureScrollBox = new ScrollBox ();
- this.VBox.PackStart (aboutPictureScrollBox);
+ this.VBox.PackStart (aboutPictureScrollBox, false, false, 0);
Notebook nb = new Notebook ();
nb.SetSizeRequest (400, 280);
@@ -157,7 +157,7 @@
//nb.AppendPage (changelog, new Label ("ChangeLog"));
nb.AppendPage (vinfo, new Label (GettextCatalog.GetString ("Version Info")));
- this.VBox.PackStart (nb);
+ this.VBox.PackStart (nb, true, true, 0);
this.AddButton (Gtk.Stock.Close, (int) ResponseType.Close);
this.ShowAll ();
}
More information about the Monodevelop-patches-list
mailing list