Address PR feedback

This commit is contained in:
Bruce Bowyer-Smyth 2016-01-13 18:03:54 +10:00
parent 52664e2928
commit 34124479f0
2 changed files with 7 additions and 10 deletions

View File

@ -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);
//}
// Spelling preferences.
type = typeof(SpellingPreferencesPanel);
preferencesPanelTypeTable["spelling"] = type;
types.Add(type);
//glossary management
type = typeof(GlossaryPreferencesPanel);

View File

@ -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