@@ -45,7 +45,7 @@ public partial class EditorElement : UserControl
45
45
private bool isBlock ;
46
46
private double LineHeight ;
47
47
public new LayoutDocument Parent ;
48
- private bool SelectionIsHighlited ;
48
+ private bool SelectionIsHighlighted ;
49
49
private bool WantFoldingUpdate ;
50
50
public bool IsTemplateEditor = false ;
51
51
private bool Closed = false ;
@@ -304,28 +304,28 @@ private void RegularyTimer_Elapsed(object sender, ElapsedEventArgs e)
304
304
{
305
305
colorizeSelection . SelectionString = selectionString ;
306
306
colorizeSelection . HighlightSelection = true ;
307
- SelectionIsHighlited = true ;
307
+ SelectionIsHighlighted = true ;
308
308
editor . TextArea . TextView . Redraw ( ) ;
309
309
}
310
310
else
311
311
{
312
312
colorizeSelection . HighlightSelection = false ;
313
313
colorizeSelection . SelectionString = string . Empty ;
314
- if ( SelectionIsHighlited )
314
+ if ( SelectionIsHighlighted )
315
315
{
316
316
editor . TextArea . TextView . Redraw ( ) ;
317
- SelectionIsHighlited = false ;
317
+ SelectionIsHighlighted = false ;
318
318
}
319
319
}
320
320
}
321
321
else
322
322
{
323
323
colorizeSelection . HighlightSelection = false ;
324
324
colorizeSelection . SelectionString = string . Empty ;
325
- if ( SelectionIsHighlited )
325
+ if ( SelectionIsHighlighted )
326
326
{
327
327
editor . TextArea . TextView . Redraw ( ) ;
328
- SelectionIsHighlited = false ;
328
+ SelectionIsHighlighted = false ;
329
329
}
330
330
}
331
331
} ) ;
0 commit comments