Ticket #2238 (mcedit: do not reset selection after copy to clipboard)

In mcedit, when the selected text is copied to the clipboard, the selection disappears.
    This behavior contradicts to the traditional behavior of all modern text editors and is highly annoying.
    Now selection don't reset after the text is copied into the clipboard.

Signed-off-by: Ilia Maslakov <il.smind@gmail.com>
This commit is contained in:
Ilia Maslakov 2010-12-10 10:53:15 +03:00 committed by Andrew Borodin
parent b6c47f196f
commit bac3fbe8a9

View File

@ -2461,7 +2461,6 @@ edit_copy_to_X_buf_cmd (WEdit * edit)
/* try use external clipboard utility */
copy_file_to_ext_clip ();
edit_mark_cmd (edit, 1);
return 0;
}