Skip to content

Commit

Permalink
- Bring back syntax highlight broken by previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
wmjordan committed Aug 29, 2024
1 parent 5dbd5d8 commit a91e3fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Codist/SyntaxHighlight/StyleBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -306,8 +306,8 @@ public SyntaxStyle(string classificationType) {
Key = classificationType;
Category = "General";
}
public SyntaxStyle(string classificationType, StyleBase baseStyle) : this(classificationType) {
baseStyle.CopyTo(baseStyle);
internal SyntaxStyle(string classificationType, StyleBase baseStyle) : this(classificationType) {
baseStyle.CopyTo(this);
}
}

Expand Down

0 comments on commit a91e3fd

Please sign in to comment.