jpeg pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=5573cf414a4e6601025e7e117e54ceeff1d9492f

commit 5573cf414a4e6601025e7e117e54ceeff1d9492f
Author: Jean-Philippe Andre <[email protected]>
Date:   Wed May 24 16:00:47 2017 +0900

    evas: Unify device names
    
    Fixes mouse name that was "keyboard".
    
    This is an attempt at unifying names under X11, WL and VNC.
    
    The default device names now look the same, namely "Keyboard"
    and "Mouse". The default seat still has different names on WL
    and X11 ("seat-0" and "default").
---
 src/lib/evas/canvas/evas_main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/evas/canvas/evas_main.c b/src/lib/evas/canvas/evas_main.c
index 5878856..e03af07 100644
--- a/src/lib/evas/canvas/evas_main.c
+++ b/src/lib/evas/canvas/evas_main.c
@@ -1015,12 +1015,12 @@ evas_output_method_set(Evas *eo_e, int render_method)
                                           NULL, NULL, EVAS_DEVICE_CLASS_SEAT,
                                           EVAS_DEVICE_SUBCLASS_NONE);
    evas_device_seat_id_set(e->default_seat, 1);
-   e->default_mouse = evas_device_add_full(eo_e, "keyboard",
+   e->default_mouse = evas_device_add_full(eo_e, "Mouse",
                                            "The default mouse",
                                            e->default_seat, NULL,
                                            EVAS_DEVICE_CLASS_MOUSE,
                                            EVAS_DEVICE_SUBCLASS_NONE);
-   e->default_keyboard = evas_device_add_full(eo_e, "keyboard",
+   e->default_keyboard = evas_device_add_full(eo_e, "Keyboard",
                                               "The default keyboard",
                                               e->default_seat, NULL,
                                               EVAS_DEVICE_CLASS_KEYBOARD,

-- 


Reply via email to