diff options
author | johnsonj <devnull@localhost> | 2015-09-04 13:07:49 +1000 |
---|---|---|
committer | johnsonj <devnull@localhost> | 2015-09-04 13:07:49 +1000 |
commit | 3dc404cbf409efeb8eb3bdcd38d21e5a218454a3 (patch) | |
tree | 756930c1786c2b668ff707b7b7c71fc54539948b /cocoa | |
parent | 37c8cba55c4b6ad5fcefec97175072d73bb58743 (diff) | |
download | scintilla-mirror-3dc404cbf409efeb8eb3bdcd38d21e5a218454a3.tar.gz |
Change FillVirtualSpace to ClearBeforeTentativeStart and delete selected text.
Diffstat (limited to 'cocoa')
-rw-r--r-- | cocoa/ScintillaCocoa.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cocoa/ScintillaCocoa.mm b/cocoa/ScintillaCocoa.mm index 2abf1d3e0..76614ce3e 100644 --- a/cocoa/ScintillaCocoa.mm +++ b/cocoa/ScintillaCocoa.mm @@ -2221,7 +2221,7 @@ void ScintillaCocoa::SelectOnlyMainSelection() */ void ScintillaCocoa::ConvertSelectionVirtualSpace() { - FillVirtualSpace(); + ClearBeforeTentativeStart(); } //-------------------------------------------------------------------------------------------------- |