From: Kangho Hur Date: Wed, 22 Mar 2017 07:17:56 +0000 (+0900) Subject: Fix Naviframe.Push bug X-Git-Tag: submit/trunk/20170823.075128~110^2~129 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=434e710a42dbc78264b82904112796e98b72dff6;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git Fix Naviframe.Push bug Change-Id: I384050005f6ec7e3fb9d7f237809b758e0772962 --- 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;