billiob pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=6d20de8327382d51779bb36ed3e33f8cc048ba5d

commit 6d20de8327382d51779bb36ed3e33f8cc048ba5d
Author: Boris Faure <bill...@gmail.com>
Date:   Thu Mar 6 21:59:38 2014 +0100

    fix shift+insert. Closes T1060
---
 src/bin/termio.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/termio.c b/src/bin/termio.c
index ff2eff7..7a2232e 100644
--- a/src/bin/termio.c
+++ b/src/bin/termio.c
@@ -2027,9 +2027,9 @@ _handle_shift(Evas_Event_Key_Down *ev, int by, 
Evas_Object *term, Termio *sd)
    else if (!strcmp(ev->key, "Insert"))
      {
         if (evas_key_modifier_is_set(ev->modifiers, "Control"))
-          _paste_selection(term, ELM_SEL_TYPE_PRIMARY);
-        else
           _paste_selection(term, ELM_SEL_TYPE_CLIPBOARD);
+        else
+          _paste_selection(term, ELM_SEL_TYPE_PRIMARY);
      }
    else if (!strcmp(ev->key, "KP_Add"))
      {

-- 


Reply via email to