You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Open a document with at least 2 lines of text in Notepad++.
Move to the top of the document.
Activate NVDA say all (NVDA+downArrow).
Stop say all by pressing control when it reaches the second line.
Make NVDA report the selection (NVDA+shift+upArrow).
Expected: There should be no selection.
Actual: The first line is selected.
This is probably also why spurious selection and unselection is reported during say all. Selection wasn't reported automatically for Scintilla controls until 78daa96, but this bug would have existed before then and needs to be fixed.
The text was updated successfully, but these errors were encountered:
Comment 1 by jteh on 2010-07-15 23:05
We're using the wrong messages. In Scintilla, selection consists of two parts: the anchor and the current position. We're using SCI_SETCURRENTPOS; we should be using SCI_GOTOPOS.
Reported by jteh on 2010-07-05 01:12
Str:
This is probably also why spurious selection and unselection is reported during say all. Selection wasn't reported automatically for Scintilla controls until 78daa96, but this bug would have existed before then and needs to be fixed.
The text was updated successfully, but these errors were encountered: