summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKangho Hur <kangho.hur@samsung.com>2017-03-22 16:17:56 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-03-22 16:17:56 +0900
commit64810c15f552b9290649b81647c5279cc18d0787 (patch)
treed9d6d7c3bb15393484a4f6304b636983fedc8eab
parent48b9652f5a242cfa5496f9589a593f527e6bc48c (diff)
downloadelm-sharp-64810c15f552b9290649b81647c5279cc18d0787.tar.gz
elm-sharp-64810c15f552b9290649b81647c5279cc18d0787.tar.bz2
elm-sharp-64810c15f552b9290649b81647c5279cc18d0787.zip
Change-Id: I384050005f6ec7e3fb9d7f237809b758e0772962
-rw-r--r--ElmSharp/ElmSharp/Naviframe.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ElmSharp/ElmSharp/Naviframe.cs b/ElmSharp/ElmSharp/Naviframe.cs
index 109d97e..0f9b3eb 100644
--- a/ElmSharp/ElmSharp/Naviframe.cs
+++ b/ElmSharp/ElmSharp/Naviframe.cs
@@ -85,7 +85,7 @@ namespace ElmSharp
public NaviItem Push(EvasObject content, string title, string style)
{
- IntPtr item = Interop.Elementary.elm_naviframe_item_push(RealHandle, title, IntPtr.Zero, IntPtr.Zero, content.Handle, null);
+ IntPtr item = Interop.Elementary.elm_naviframe_item_push(RealHandle, title, IntPtr.Zero, IntPtr.Zero, content.Handle, style);
NaviItem naviItem = NaviItem.FromNativeHandle(item, content);
_itemStack.Add(naviItem);
naviItem.Popped += ItemPoppedHandler;