diff options
author | nyamatongwe <devnull@localhost> | 2010-12-11 11:05:12 +1100 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2010-12-11 11:05:12 +1100 |
commit | 1e03c3b80c7543fa94e9d9da55a618e848089feb (patch) | |
tree | e37735b7a8f34312173185f8daed3f172bd1033c /gtk | |
parent | 827332df11d2ec8436d287473f916274822dd139 (diff) | |
download | scintilla-mirror-1e03c3b80c7543fa94e9d9da55a618e848089feb.tar.gz |
Make multiple selection multi-paste work when multi-type is off. Bug #3126221.
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/ScintillaGTK.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index 99f220d6c..873bc4c65 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -1424,7 +1424,7 @@ void ScintillaGTK::ReceivedSelection(GtkSelectionData *selection_data) { UndoGroup ug(pdoc); if (selection_data->selection != GDK_SELECTION_PRIMARY) { - ClearSelection(); + ClearSelection(multiPasteMode == SC_MULTIPASTE_EACH); } SelectionPosition selStart = sel.IsRectangular() ? sel.Rectangular().Start() : |