Skip to content

Commit

Permalink
Fixed deadlock issue, bumped version number to 1.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
Noah Richards committed Jan 29, 2010
1 parent 172d077 commit bf600fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Spelling/SpellingTagger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ void CheckSpellings(object obj)
lock (_dirtySpanLock)
{
if (_dirtySpans.Count != 0)
_dispatcher.Invoke(new Action(() => ScheduleUpdate()));
_dispatcher.BeginInvoke(new Action(() => ScheduleUpdate()));
}
}

Expand Down
2 changes: 1 addition & 1 deletion source.extension.vsixmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Identifier Id="SpellChecker">
<Name>Spell Checker</Name>
<Author>Roman Golovin and Noah Richards</Author>
<Version>1.0</Version>
<Version>1.1</Version>
<Description>An editor extension that checks the spelling of comments, strings, and plaintext as you type.</Description>
<Locale>1033</Locale>
<InstalledByMsi>false</InstalledByMsi>
Expand Down

0 comments on commit bf600fd

Please sign in to comment.