Address PR feedback
This commit is contained in:
parent
52664e2928
commit
34124479f0
|
@ -150,13 +150,10 @@ namespace OpenLiveWriter.PostEditor
|
|||
preferencesPanelTypeTable["accounts"] = type;
|
||||
types.Add(type);
|
||||
|
||||
//if (SpellingSettings.CanSpellCheck)
|
||||
//{
|
||||
// Spelling preferences.
|
||||
type = typeof(SpellingPreferencesPanel);
|
||||
preferencesPanelTypeTable["spelling"] = type;
|
||||
types.Add(type);
|
||||
//}
|
||||
|
||||
//glossary management
|
||||
type = typeof(GlossaryPreferencesPanel);
|
||||
|
|
|
@ -41,7 +41,7 @@ namespace OpenLiveWriter.SpellChecker
|
|||
if (string.IsNullOrEmpty(word))
|
||||
{
|
||||
offset = 0;
|
||||
length = word.Length;
|
||||
length = 0;
|
||||
return SpellCheckResult.Correct;
|
||||
}
|
||||
|
||||
|
@ -49,8 +49,8 @@ namespace OpenLiveWriter.SpellChecker
|
|||
|
||||
if (spellerStatus == null)
|
||||
{
|
||||
offset = -1;
|
||||
length = -1;
|
||||
offset = 0;
|
||||
length = word.Length;
|
||||
return SpellCheckResult.Correct;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue