diff options
author | nyamatongwe <unknown> | 2002-06-19 11:01:21 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-06-19 11:01:21 +0000 |
commit | 1d36d7e91e44d0675bf1c1e3c8834b1d0a4804ee (patch) | |
tree | 27673630a940f5074c74a2199c8b805289f67897 /src | |
parent | 5fd10810590591df4d2aa51d1de0f239f0fe8dfa (diff) | |
download | scintilla-mirror-1d36d7e91e44d0675bf1c1e3c8834b1d0a4804ee.tar.gz |
TextHeight feature contributed by Josh Wingstrom.
Diffstat (limited to 'src')
-rw-r--r-- | src/Editor.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index fbf44883c..aa05775de 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -4729,6 +4729,9 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { PLATFORM_ASSERT(lParam); return TextWidth(wParam, CharPtrFromSPtr(lParam)); + case SCI_TEXTHEIGHT: + return vs.lineHeight; + case SCI_SETENDATLASTLINE: PLATFORM_ASSERT((wParam == 0) || (wParam ==1)); if (endAtLastLine != (wParam != 0)) { |