Correct ContextPopup IsHorizontal setter 60/113260/1
authorSidharth Gupta <sid92.gupta@samsung.com>
Tue, 7 Feb 2017 05:02:16 +0000 (14:02 +0900)
committerSidharth Gupta <sid92.gupta@samsung.com>
Tue, 7 Feb 2017 05:03:27 +0000 (14:03 +0900)
The incorrect Interop method was being called.

Signed-off-by: Sidharth Gupta <sid92.gupta@samsung.com>
Change-Id: I8ecce1c7a007d3539917d109f623c29a3ab31b43

ElmSharp/ElmSharp/ContextPopup.cs

index 47a336c..cb1fe2f 100644 (file)
@@ -66,7 +66,7 @@ namespace ElmSharp
             }
             set
             {
-                Interop.Elementary.elm_box_horizontal_set(Handle, value);
+                Interop.Elementary.elm_ctxpopup_horizontal_set(Handle, value);
             }
         }