diff options
author | nyamatongwe <devnull@localhost> | 2011-01-02 18:17:06 +1100 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-01-02 18:17:06 +1100 |
commit | 5d37da4e2091714382bed99935186269b84667bf (patch) | |
tree | 9a6186eaad747438858757249830ca97ab96c858 /src | |
parent | dca63476b59be3391d9dc7a1dd3d7384b553e70e (diff) | |
download | scintilla-mirror-5d37da4e2091714382bed99935186269b84667bf.tar.gz |
Ensure a SCN_UPDATEUI notification occurs when overstrike mode changed.
Diffstat (limited to 'src')
-rw-r--r-- | src/Editor.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 89c67b433..fb66c8a86 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -5134,6 +5134,7 @@ int Editor::KeyCommand(unsigned int iMessage) { inOverstrike = !inOverstrike; DropCaret(); ShowCaretAtCurrentPosition(); + ContainerNeedsUpdate(SC_UPDATE_CONTENT); NotifyUpdateUI(); break; case SCI_CANCEL: // Cancel any modes - handled in subclass |