billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=49b08115c940dfa6acecde251f178079c923cd75
commit 49b08115c940dfa6acecde251f178079c923cd75 Author: Boris Faure <[email protected]> Date: Sun Dec 1 16:35:10 2013 +0100 mouse down focuses a term, whatever the button --- src/bin/main.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/bin/main.c b/src/bin/main.c index 1823c3b..9367d01 100644 --- a/src/bin/main.c +++ b/src/bin/main.c @@ -758,12 +758,9 @@ _cb_term_mouse_down(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSE term2 = main_win_focused_term_get(term->wn); if (term == term2) return; - if (ev->button == 1) - { - term->down.x = ev->canvas.x; - term->down.y = ev->canvas.y; - _term_focus(term); - } + term->down.x = ev->canvas.x; + term->down.y = ev->canvas.y; + _term_focus(term); } static void --
