From c4dd90cc8879aedcc403ad60c1bd18d6f122ce32 Mon Sep 17 00:00:00 2001 From: Sungtaek Hong Date: Tue, 21 Mar 2017 13:41:49 +0900 Subject: [PATCH] win: set elm_win type ELM_WIN_BASIC - In Tizen 3.0, ELM_WIN_BASIC is 1, while 0 in upstream. when elm_win is added as 0, its type will be ELM_WIN_UNKNOWN, and its calculation cannot be guaranteed as the same with ELM_WIN_BASIC. Change-Id: Ifa6212bc73f350010c29929a26f63ebf1bb132b3 Signed-off-by: Sungtaek Hong --- src/ElmSharp/ElmSharp/Window.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ElmSharp/ElmSharp/Window.cs b/src/ElmSharp/ElmSharp/Window.cs index 6c71fcf..517737f 100755 --- a/src/ElmSharp/ElmSharp/Window.cs +++ b/src/ElmSharp/ElmSharp/Window.cs @@ -286,7 +286,7 @@ namespace ElmSharp protected override IntPtr CreateHandle(EvasObject parent) { Interop.Elementary.elm_config_accel_preference_set("3d"); - return Interop.Elementary.elm_win_add(parent != null ? parent.Handle : IntPtr.Zero, Name, 0); + return Interop.Elementary.elm_win_add(parent != null ? parent.Handle : IntPtr.Zero, Name, 1); } internal void AddChild(EvasObject obj) -- 2.7.4