diff options
author | Neil <devnull@localhost> | 2015-04-14 10:07:12 +1000 |
---|---|---|
committer | Neil <devnull@localhost> | 2015-04-14 10:07:12 +1000 |
commit | 9eb20293474d61ab5ba1f83472013bff1f0e248c (patch) | |
tree | f298622ae4d7a7f551bd108e4626bd97f1843e05 /src/Editor.cxx | |
parent | d0b7fcbb956615f3da6ea2c759467986f4a1c44b (diff) | |
download | scintilla-mirror-9eb20293474d61ab5ba1f83472013bff1f0e248c.tar.gz |
Ensure SCI_TEXTHEIGHT uses valid style data and remove test pauses that
hid this.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 2f2458861..77d9ce5e7 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -6227,6 +6227,7 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { return TextWidth(static_cast<int>(wParam), CharPtrFromSPtr(lParam)); case SCI_TEXTHEIGHT: + RefreshStyleData(); return vs.lineHeight; case SCI_SETENDATLASTLINE: |