@@ -267,7 +267,9 @@ void AddInsertionTextBlock(int start, int end, string line)
267
267
{
268
268
string remainder = line . Substring ( start , end - start ) ;
269
269
var textBlock = CreateTextBox ( remainder , greyBrush ) ;
270
- GetTagger ( ) . UpdateAdornment ( textBlock ) ;
270
+ var inlineTagger = GetTagger ( ) ;
271
+ if ( inlineTagger == null ) { return ; }
272
+ inlineTagger . UpdateAdornment ( textBlock ) ;
271
273
}
272
274
catch ( ArgumentOutOfRangeException )
273
275
{
@@ -281,7 +283,9 @@ public void UpdateAdornment(IWpfTextView view, string userText, int suggestionSt
281
283
try
282
284
{
283
285
stackPanel . Children . Clear ( ) ;
284
- GetTagger ( ) . ClearAdornment ( ) ;
286
+ var inlineTagger = GetTagger ( ) ;
287
+ if ( inlineTagger == null ) { return ; }
288
+ inlineTagger . ClearAdornment ( ) ;
285
289
for ( int i = suggestionStart ; i < suggestion . Item2 . Length ; i ++ )
286
290
{
287
291
string line = suggestion . Item2 [ i ] ;
@@ -363,6 +367,7 @@ private void OnSizeChanged(object sender, EventArgs e)
363
367
var start = view . TextViewLines . GetCharacterBounds ( snapshotLine . Start ) ;
364
368
365
369
InlineGreyTextTagger inlineTagger = GetTagger ( ) ;
370
+ if ( inlineTagger == null ) { return ; }
366
371
inlineTagger . FormatText ( GetTextFormat ( ) ) ;
367
372
368
373
if ( stackPanel . Children . Count > 0 )
@@ -516,6 +521,7 @@ public void ClearSuggestion()
516
521
{
517
522
if ( ! showSuggestion ) return ;
518
523
InlineGreyTextTagger inlineTagger = GetTagger ( ) ;
524
+ if ( inlineTagger == null ) { return ; }
519
525
inlineTagger . ClearAdornment ( ) ;
520
526
inlineTagger . MarkDirty ( ) ;
521
527
suggestion = null ;
@@ -536,7 +542,9 @@ void MarkDirty()
536
542
{
537
543
try
538
544
{
539
- GetTagger ( ) . MarkDirty ( ) ;
545
+ InlineGreyTextTagger inlineTagger = GetTagger ( ) ;
546
+ if ( inlineTagger == null ) { return ; }
547
+ inlineTagger . MarkDirty ( ) ;
540
548
ITextSnapshot newSnapshot = buffer . CurrentSnapshot ;
541
549
this . snapshot = newSnapshot ;
542
550
0 commit comments