Browse Source

Fixed mixed tab and spaces

pull/505/head
julodnik 11 years ago
parent
commit
2e99d98178
  1. 4
      src/Libraries/AvalonEdit/ICSharpCode.AvalonEdit/Highlighting/HighlightingColor.cs
  2. 2
      src/Libraries/AvalonEdit/ICSharpCode.AvalonEdit/Highlighting/Xshd/XshdColor.cs

4
src/Libraries/AvalonEdit/ICSharpCode.AvalonEdit/Highlighting/HighlightingColor.cs

@ -88,8 +88,8 @@ namespace ICSharpCode.AvalonEdit.Highlighting @@ -88,8 +88,8 @@ namespace ICSharpCode.AvalonEdit.Highlighting
/// <summary>
/// Gets/sets the underline flag. Null if the underline status does not change the font style.
/// </summary>
public bool? Underline {
get {
public bool? Underline {
get {
return underline;
}
set {

2
src/Libraries/AvalonEdit/ICSharpCode.AvalonEdit/Highlighting/Xshd/XshdColor.cs

@ -106,7 +106,7 @@ namespace ICSharpCode.AvalonEdit.Highlighting.Xshd @@ -106,7 +106,7 @@ namespace ICSharpCode.AvalonEdit.Highlighting.Xshd
info.AddValue("Background", this.Background);
info.AddValue("HasWeight", this.FontWeight.HasValue);
if (this.Underline)
info.AddValue("Underline", this.Underline);
info.AddValue("Underline", this.Underline);
if (this.FontWeight.HasValue)
info.AddValue("Weight", this.FontWeight.Value.ToOpenTypeWeight());
info.AddValue("HasStyle", this.FontStyle.HasValue);

Loading…
Cancel
Save