diff options
author | nyamatongwe <devnull@localhost> | 2005-02-17 12:39:24 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2005-02-17 12:39:24 +0000 |
commit | 127e529a6b9eda9244a87d901ff140b179717bd0 (patch) | |
tree | e39ddb1c36217d5b6be476fd0964f42abf2fd130 /src/ScintillaBase.cxx | |
parent | d3adb81fe67d6bbb8b922c72d9aa027f7e27f8a0 (diff) | |
download | scintilla-mirror-127e529a6b9eda9244a87d901ff140b179717bd0.tar.gz |
Fix for bug 1110111 by moving end of styling to first argument if it is
currently after the argument.
Diffstat (limited to 'src/ScintillaBase.cxx')
-rw-r--r-- | src/ScintillaBase.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index 6377eac3e..78c15f7d7 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -617,6 +617,7 @@ sptr_t ScintillaBase::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lPara case SCI_COLOURISE: if (lexLanguage == SCLEX_CONTAINER) { + pdoc->ModifiedAt(wParam); NotifyStyleToNeeded((lParam == -1) ? pdoc->Length() : lParam); } else { Colourise(wParam, lParam); |