summaryrefslogtreecommitdiff
path: root/ElmSharp/ElmSharp/Naviframe.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ElmSharp/ElmSharp/Naviframe.cs')
-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;