Browse Source

Fix default value for WordWrapIndentation.

pull/14/head
Daniel Grunwald 15 years ago
parent
commit
4d09117f40
  1. 4
      src/Libraries/AvalonEdit/ICSharpCode.AvalonEdit/TextEditorOptions.cs

4
src/Libraries/AvalonEdit/ICSharpCode.AvalonEdit/TextEditorOptions.cs

@ -268,13 +268,13 @@ namespace ICSharpCode.AvalonEdit
} }
} }
double wordWrapIndentation = 100; double wordWrapIndentation = 0;
/// <summary> /// <summary>
/// Gets/Sets the indentation used for all lines except the first when word-wrapping. /// Gets/Sets the indentation used for all lines except the first when word-wrapping.
/// The default value is 0. /// The default value is 0.
/// </summary> /// </summary>
[DefaultValue(100)] [DefaultValue(0.0)]
public virtual double WordWrapIndentation { public virtual double WordWrapIndentation {
get { return wordWrapIndentation; } get { return wordWrapIndentation; }
set { set {

Loading…
Cancel
Save