Skip to content
This repository was archived by the owner on Oct 16, 2020. It is now read-only.

Commit a5fee39

Browse files
julodnikdgrunwald
authored andcommitted
Fixed mixed tab and spaces
1 parent fe37b3b commit a5fee39

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ public FontStyle? FontStyle {
8888
/// <summary>
8989
/// Gets/sets the underline flag. Null if the underline status does not change the font style.
9090
/// </summary>
91-
public bool? Underline {
92-
get {
91+
public bool? Underline {
92+
get {
9393
return underline;
9494
}
9595
set {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public virtual void GetObjectData(SerializationInfo info, StreamingContext conte
106106
info.AddValue("Background", this.Background);
107107
info.AddValue("HasWeight", this.FontWeight.HasValue);
108108
if (this.Underline)
109-
info.AddValue("Underline", this.Underline);
109+
info.AddValue("Underline", this.Underline);
110110
if (this.FontWeight.HasValue)
111111
info.AddValue("Weight", this.FontWeight.Value.ToOpenTypeWeight());
112112
info.AddValue("HasStyle", this.FontStyle.HasValue);

0 commit comments

Comments
 (0)