[Monodevelop-patches-list] r1036 - trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/OptionPanels
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Wed Feb 25 21:56:37 EST 2004
Author: tberman
Date: 2004-02-25 21:56:37 -0500 (Wed, 25 Feb 2004)
New Revision: 1036
Modified:
trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/OptionPanels/BehaviorTextEditorPanel.cs
Log:
tab fix
Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/OptionPanels/BehaviorTextEditorPanel.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/OptionPanels/BehaviorTextEditorPanel.cs 2004-02-26 02:50:48 UTC (rev 1035)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/OptionPanels/BehaviorTextEditorPanel.cs 2004-02-26 02:56:37 UTC (rev 1036)
@@ -113,7 +113,7 @@
//FIXME: Only one of these should be selected to hold the value
indentAndTabSizeSpinButton.Value = ((IProperties)CustomizationObject).GetProperty(
- "IndentationSize", 4);
+ "TabIndent", 4);
if (IndentStyle.None.Equals(
(IndentStyle) ((IProperties)CustomizationObject).GetProperty(
@@ -164,7 +164,7 @@
// ((IProperties)CustomizationObject).SetProperty("IndentStyle", IndentStyle.Smart);
//FIXME: Only one of these should be selected to save the value
- ((IProperties)CustomizationObject).SetProperty("IndentationSize", indentAndTabSizeSpinButton.Value);
+ ((IProperties)CustomizationObject).SetProperty("TabIndent", indentAndTabSizeSpinButton.Value);
}
}
}
More information about the Monodevelop-patches-list
mailing list