diff options
author | Neil <nyamatongwe@gmail.com> | 2014-01-13 08:59:43 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-01-13 08:59:43 +1100 |
commit | d8ba29f4960d601878e1b10be14c71b1df28f942 (patch) | |
tree | feb7efd5a684774180583f596656afd03e332bd5 | |
parent | e08d12e3d6c71ad4dde001998f3479cfd40ec61a (diff) | |
download | scintilla-mirror-d8ba29f4960d601878e1b10be14c71b1df28f942.tar.gz |
Send SCN_UPDATEUI with SC_UPDATE_SELECTION for Shift+Tab inside text.
-rw-r--r-- | doc/ScintillaHistory.html | 3 | ||||
-rw-r--r-- | src/Editor.cxx | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 0fb89e951..db85e443d 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -489,6 +489,9 @@ to ensure caret is inside visible area. </li> <li> + Send SCN_UPDATEUI with SC_UPDATE_SELECTION for Shift+Tab inside text. + </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/src/Editor.cxx b/src/Editor.cxx index 7bc142ee3..833f60d9a 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -5858,6 +5858,7 @@ void Editor::Indent(bool forwards) { } } } + ContainerNeedsUpdate(SC_UPDATE_SELECTION); } class CaseFolderASCII : public CaseFolderTable { |