diff options
| author | Neil <nyamatongwe@gmail.com> | 2014-12-05 20:36:01 +1100 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2014-12-05 20:36:01 +1100 |
| commit | c0e2261ef73cee1f91866314f7b9405be4b88867 (patch) | |
| tree | d6818c8224eb3fc2e5e3e6df83840131c888de28 /gtk | |
| parent | 121cdce949c0aadcda06306726a741023262fb9e (diff) | |
| download | scintilla-mirror-c0e2261ef73cee1f91866314f7b9405be4b88867.tar.gz | |
Extract FillVirtualSpace so it is not repeated and can be made less complex in
the future.
Diffstat (limited to 'gtk')
| -rw-r--r-- | gtk/ScintillaGTK.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index bc3d00952..d5d0622da 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -2405,10 +2405,7 @@ void ScintillaGTK::PreeditChangedThis() { } else { // No tentative undo means start of this composition so // fill in any virtual spaces. - bool tmpOverstrike = inOverstrike; - inOverstrike = false; // Not allowed to be deleted twice. - AddCharUTF("", 0); - inOverstrike = tmpOverstrike; + FillVirtualSpace(); } PreEditString utfval(im_context); |
