From c66be88299d82de789c265025120a3dd7df1aa6c Mon Sep 17 00:00:00 2001 From: Neil Date: Wed, 4 Apr 2018 14:27:07 +1000 Subject: Bug [#2006]. State SCN_UPDATEUI is an indication that change may have occurred and not that a change definitely occurred. --- doc/ScintillaDoc.html | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'doc/ScintillaDoc.html') diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 633508035..8ba5d668b 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -7227,8 +7227,10 @@ href="#SCI_POSITIONFROMLINE">SCI_POSITIONFROMLINE(lineNumber); held down in a similar manner to SCN_KEY.

SCN_UPDATEUI
- Either the text or styling of the document has changed or the selection range or scroll position has changed. + Either the text or styling of the document has changed or the selection range or scroll position may have changed. Now would be a good time to update any container UI elements that depend on document or view state. + As it is sometimes difficult to determine whether a change has occurred, these events may also fire when there + has been no actual change. The updated field is set to the bit set of things changed since the previous notification.

@@ -7248,7 +7250,7 @@ href="#SCI_POSITIONFROMLINE">SCI_POSITIONFROMLINE(lineNumber); - + @@ -7257,7 +7259,7 @@ href="#SCI_POSITIONFROMLINE">SCI_POSITIONFROMLINE(lineNumber); - + @@ -7266,7 +7268,7 @@ href="#SCI_POSITIONFROMLINE">SCI_POSITIONFROMLINE(lineNumber); - + @@ -7275,7 +7277,7 @@ href="#SCI_POSITIONFROMLINE">SCI_POSITIONFROMLINE(lineNumber); - + -- cgit v1.2.3
0x01Contents, styling or markers have been changed.Contents, styling or markers may have been changed.
0x02Selection has been changed.Selection may have been changed.
0x04Scrolled vertically.May have scrolled vertically.
0x08Scrolled horizontally.May have scrolled horizontally.