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 | 277f1de6e80bfc2cbb1eb0ab20a88f6e91cdf32f (patch) | |
| tree | e9de4dbef51b79b91a12a73a9be0e6b9e1caee17 /win32/ScintillaWin.cxx | |
| parent | d8ba29f4960d601878e1b10be14c71b1df28f942 (diff) | |
| download | scintilla-mirror-277f1de6e80bfc2cbb1eb0ab20a88f6e91cdf32f.tar.gz | |
Update the system caret position when scrolling to help screen readers
see the scroll quickly.
Diffstat (limited to 'win32/ScintillaWin.cxx')
| -rw-r--r-- | win32/ScintillaWin.cxx | 1 | 
1 files changed, 1 insertions, 0 deletions
| 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() { | 
