summaryrefslogtreecommitdiff
path: root/ElmSharp/ElmSharp/Label.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ElmSharp/ElmSharp/Label.cs')
-rw-r--r--[-rwxr-xr-x]ElmSharp/ElmSharp/Label.cs9
1 files changed, 2 insertions, 7 deletions
diff --git a/ElmSharp/ElmSharp/Label.cs b/ElmSharp/ElmSharp/Label.cs
index 1bcb5b3..6c30010 100755..100644
--- a/ElmSharp/ElmSharp/Label.cs
+++ b/ElmSharp/ElmSharp/Label.cs
@@ -100,13 +100,8 @@ namespace ElmSharp
protected override IntPtr CreateHandle(EvasObject parent)
{
- IntPtr handle = Interop.Elementary.elm_layout_add(parent.Handle);
- Interop.Elementary.elm_layout_theme_set(handle, "layout", "elm_widget", "default");
-
- RealHandle = Interop.Elementary.elm_label_add(handle);
- Interop.Elementary.elm_object_part_content_set(handle, "elm.swallow.content", RealHandle);
-
- return handle;
+ //TODO: Fix this to use layout
+ return Interop.Elementary.elm_label_add(parent.Handle);
}
}