Skip to content

Commit

Permalink
Merge pull request #109 from desjarlais/Issue108_ContainerLexerNotSel…
Browse files Browse the repository at this point in the history
…ectable

allow container lexer to be selected when setting LexerName as empty …
  • Loading branch information
desjarlais authored Feb 16, 2024
2 parents 7260163 + 6c0fe34 commit c10247d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Shared/Scintilla.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4845,7 +4845,7 @@ public string LexerName

set
{
if (string.IsNullOrWhiteSpace(value))
if (string.IsNullOrWhiteSpace(value) && value != string.Empty)
{
lexerName = value;

Expand Down

0 comments on commit c10247d

Please sign in to comment.