[Monodevelop-patches-list] r1413 - in trunk/MonoDevelop/src/Main/Base: . Gui/Workbench
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Wed Apr 7 23:46:34 EDT 2004
Author: jluke
Date: 2004-04-07 23:46:34 -0400 (Wed, 07 Apr 2004)
New Revision: 1413
Modified:
trunk/MonoDevelop/src/Main/Base/ChangeLog
trunk/MonoDevelop/src/Main/Base/Gui/Workbench/DefaultWorkbench.cs
Log:
* Gui/Workbench/DefaultWorkbench.cs: uncomment memento restoring code
Modified: trunk/MonoDevelop/src/Main/Base/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/Main/Base/ChangeLog 2004-04-08 03:31:41 UTC (rev 1412)
+++ trunk/MonoDevelop/src/Main/Base/ChangeLog 2004-04-08 03:46:34 UTC (rev 1413)
@@ -7,6 +7,7 @@
* Gui/Dialogs/TipOfTheDay.cs: remove IDisposable and call Hide and Dispose
instead of Destroy on the window, remove some unneccesary public things
* Commands/HelpCommand.cs: revert addition of using () {} to tipoftheday
+ * Gui/Workbench/DefaultWorkbench.cs: uncomment memento restoring code
2004-04-07 Todd Berman <tberman at sevenl.net>
Modified: trunk/MonoDevelop/src/Main/Base/Gui/Workbench/DefaultWorkbench.cs
===================================================================
--- trunk/MonoDevelop/src/Main/Base/Gui/Workbench/DefaultWorkbench.cs 2004-04-08 03:31:41 UTC (rev 1412)
+++ trunk/MonoDevelop/src/Main/Base/Gui/Workbench/DefaultWorkbench.cs 2004-04-08 03:46:34 UTC (rev 1413)
@@ -411,14 +411,14 @@
public void SetMemento(IXmlConvertable xmlMemento)
{
- /*if (xmlMemento != null) {
+ if (xmlMemento != null) {
WorkbenchMemento memento = (WorkbenchMemento)xmlMemento;
normalBounds = memento.Bounds;
Move (normalBounds.X, normalBounds.Y);
Resize (normalBounds.Width, normalBounds.Height);
- //FullScreen = memento.FullScreen;
- }*/
+ FullScreen = memento.FullScreen;
+ }
Decorated = true;
}
More information about the Monodevelop-patches-list
mailing list