DALi C# binding - change name of method, void SetVisible(bool visible) => Show(... 28/93428/2
authorRavi Nanjundappa <nravi.n@samsung.com>
Tue, 25 Oct 2016 06:59:44 +0000 (12:29 +0530)
committerRavi Nanjundappa <nravi.n@samsung.com>
Tue, 25 Oct 2016 07:01:17 +0000 (12:31 +0530)
Inserted the code Show()/Hide() into Actor class.
Now, instead of SetVisible(true) we can use Show() and for SetVisible(false) we can use Hide().

Change-Id: Ib261160e89d274cfc54ca81963c151322e4d88cb
Signed-off-by: Ravi Nanjundappa <nravi.n@samsung.com>
plugins/dali-swig/SWIG/events/actor-event.i

index 4a5f51f..e92a7b0 100644 (file)
       }
     }
 
       }
     }
 
+    public void Show()
+    {
+      SetVisible(true);
+    }
+
+    public void Hide()
+    {
+      SetVisible(false);
+    }
+
 %}
 
 %enddef
 %}
 
 %enddef