diff options
-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 { |