From 84c5eb25b3a3fd693f0f96de5c5984c51e9a4f14 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Sun, 30 Mar 2014 20:09:04 -0700 Subject: [PATCH] Actually check lines other than the active line in the spellchecker dialog --- src/dialog_spellchecker.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dialog_spellchecker.cpp b/src/dialog_spellchecker.cpp index 10d4ee464..2d89e63c4 100644 --- a/src/dialog_spellchecker.cpp +++ b/src/dialog_spellchecker.cpp @@ -224,6 +224,7 @@ bool DialogSpellChecker::FindNext() { has_looped = true; } + active_line = &*it; if (CheckLine(active_line, 0, &commit_id)) return true; }