[Monodevelop-patches-list] r1337 - in trunk/MonoDevelop/src/Main/Base: . Commands
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Thu Apr 1 18:31:21 EST 2004
Author: tberman
Date: 2004-04-01 18:31:21 -0500 (Thu, 01 Apr 2004)
New Revision: 1337
Modified:
trunk/MonoDevelop/src/Main/Base/ChangeLog
trunk/MonoDevelop/src/Main/Base/Commands/AutostartCommands.cs
Log:
dont show ToTD by default
Modified: trunk/MonoDevelop/src/Main/Base/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/Main/Base/ChangeLog 2004-04-01 21:30:51 UTC (rev 1336)
+++ trunk/MonoDevelop/src/Main/Base/ChangeLog 2004-04-01 23:31:21 UTC (rev 1337)
@@ -1,3 +1,7 @@
+2004-04-01 Todd Berman <tberman at sevenl.net>
+
+ * Commands/AutostartCommands.cs: default to false for ShowToTD
+
2004-03-31 Todd Berman <tberman at sevenl.net>
* Gui/Dialogs/CommonAboutDialog.cs: fixing the string stuff.
Modified: trunk/MonoDevelop/src/Main/Base/Commands/AutostartCommands.cs
===================================================================
--- trunk/MonoDevelop/src/Main/Base/Commands/AutostartCommands.cs 2004-04-01 21:30:51 UTC (rev 1336)
+++ trunk/MonoDevelop/src/Main/Base/Commands/AutostartCommands.cs 2004-04-01 23:31:21 UTC (rev 1337)
@@ -137,7 +137,7 @@
isCalled = true;
// show tip of the day
PropertyService propertyService = (PropertyService)ServiceManager.Services.GetService(typeof(PropertyService));
- if (propertyService.GetProperty("MonoDevelop.Gui.Dialog.TipOfTheDayView.ShowTipsAtStartup", true)) {
+ if (propertyService.GetProperty("MonoDevelop.Gui.Dialog.TipOfTheDayView.ShowTipsAtStartup", false)) {
ViewTipOfTheDay dview = new ViewTipOfTheDay();
dview.Run();
}
More information about the Monodevelop-patches-list
mailing list