diff options
| author | Neil <nyamatongwe@gmail.com> | 2014-01-13 09:53:14 +1100 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2014-01-13 09:53:14 +1100 |
| commit | 8c585027b90cf0281273fb4693afb097a956c53a (patch) | |
| tree | 533ef4ddf08996a43d62be3a4e89e6d1ba8e34ce | |
| parent | 68db55c57d1fa191a5b1dfb96742619a80d90d77 (diff) | |
| download | scintilla-mirror-8c585027b90cf0281273fb4693afb097a956c53a.tar.gz | |
Update the system caret position when scrolling to help screen readers
see the scroll quickly.
| -rw-r--r-- | doc/ScintillaHistory.html | 4 | ||||
| -rw-r--r-- | win32/ScintillaWin.cxx | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index db85e443d..ec1e76982 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -492,6 +492,10 @@ Send SCN_UPDATEUI with SC_UPDATE_SELECTION for Shift+Tab inside text. </li> <li> + On Windows update the system caret position when scrolling to help screen readers + see the scroll quickly. + </li> + <li> SciTE displays a warning message when asked to open a directory. <a href="http://sourceforge.net/p/scintilla/bugs/1568/">Bug #1568</a>. </li> diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index 8794c9613..2f11a0cc2 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -1299,6 +1299,7 @@ void ScintillaWin::ScrollText(int /* linesToMove */) { // vs.lineHeight * linesToMove, 0, 0); //::UpdateWindow(MainHWND()); Redraw(); + UpdateSystemCaret(); } void ScintillaWin::UpdateSystemCaret() { |
