From 434e710a42dbc78264b82904112796e98b72dff6 Mon Sep 17 00:00:00 2001 From: Kangho Hur Date: Wed, 22 Mar 2017 16:17:56 +0900 Subject: [PATCH] Fix Naviframe.Push bug Change-Id: I384050005f6ec7e3fb9d7f237809b758e0772962 --- src/ElmSharp/ElmSharp/Naviframe.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ElmSharp/ElmSharp/Naviframe.cs b/src/ElmSharp/ElmSharp/Naviframe.cs index 109d97e..0f9b3eb 100644 --- a/src/ElmSharp/ElmSharp/Naviframe.cs +++ b/src/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; -- 2.7.4