Confirmed.
Thanks it's fixed.

Daniel Juyung Seo (SeoZ)


On Mon, Aug 5, 2013 at 11:36 AM, Carsten Haitzler - Enlightenment Git <
no-re...@enlightenment.org> wrote:

> raster pushed a commit to branch master.
>
> commit 3fcaad12edc84684e1c09f5aacc6f6f81e91601a
> Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
> Date:   Mon Aug 5 11:36:04 2013 +0900
>
>     restore some shift based keyinput after fex to use key not keyname.
> ---
>  src/bin/termio.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/src/bin/termio.c b/src/bin/termio.c
> index 8f5dbb9..8b8d2d3 100644
> --- a/src/bin/termio.c
> +++ b/src/bin/termio.c
> @@ -2029,7 +2029,7 @@ _smart_cb_key_down(void *data, Evas *e __UNUSED__,
> Evas_Object *obj __UNUSED__,
>               evas_object_smart_callback_call(data, "split,v", NULL);
>               goto end;
>            }
> -        else if (!strcmp(ev->key, "t"))
> +        else if (!strcasecmp(ev->key, "t"))
>            {
>               _compose_seq_reset(sd);
>               evas_object_smart_callback_call(data, "new", NULL);
> @@ -2041,13 +2041,13 @@ _smart_cb_key_down(void *data, Evas *e __UNUSED__,
> Evas_Object *obj __UNUSED__,
>               evas_object_smart_callback_call(data, "select", NULL);
>               goto end;
>            }
> -        else if (!strcmp(ev->key, "c"))
> +        else if (!strcasecmp(ev->key, "c"))
>            {
>               _compose_seq_reset(sd);
>               _take_selection(data, ELM_SEL_TYPE_CLIPBOARD);
>               goto end;
>            }
> -        else if (!strcmp(ev->key, "v"))
> +        else if (!strcasecmp(ev->key, "v"))
>            {
>               _compose_seq_reset(sd);
>               _paste_selection(data, ELM_SEL_TYPE_CLIPBOARD);
>
> --
>
>
> ------------------------------------------------------------------------------
> Get your SQL database under version control now!
> Version control is standard for application code, but databases havent
> caught up. So what steps can you take to put your SQL databases under
> version control? Why should you start doing it? Read more to find out.
> http://pubads.g.doubleclick.net/gampad/clk?id=49501711&iu=/4140/ostg.clktrk
>
------------------------------------------------------------------------------
Get your SQL database under version control now!
Version control is standard for application code, but databases havent 
caught up. So what steps can you take to put your SQL databases under 
version control? Why should you start doing it? Read more to find out.
http://pubads.g.doubleclick.net/gampad/clk?id=49501711&iu=/4140/ostg.clktrk
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to