[ElmSharp] Fixed the focus issue 87/146987/6
authorRinaYou <rina6350.you@samsung.com>
Fri, 1 Sep 2017 01:25:07 +0000 (10:25 +0900)
committerKangho Hur <kangho.hur@samsung.com>
Mon, 4 Sep 2017 05:04:47 +0000 (05:04 +0000)
TASK=TCAPI-2624

* If show method for RealHandle is not called,
  the object for RealHandle is shown during rendering.
* In than case, the object for RealHandle is invisible until rendering.
* So, the object of RealHandle can not receive focus.

Change-Id: I0eecae92f1228ddfb63d07092860f33a8a7c06e8

src/ElmSharp/ElmSharp/EvasObject.cs [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index cc1d54e..aea91a4
@@ -70,6 +70,7 @@ namespace ElmSharp
             protected set
             {
                 _realHandle = value;
+                Interop.Evas.evas_object_show(_realHandle);
             }
         }