From 8cdd98537c17418b5a4853d041fb8b939ec12179 Mon Sep 17 00:00:00 2001 From: Sungtaek Hong Date: Mon, 12 Jun 2017 17:22:40 +0900 Subject: [PATCH] Label: fix wrong condition for TextStyle set/get Change-Id: I90e4aea48c404bbe56c5cfe721f1c428407dc8e5 Signed-off-by: Sungtaek Hong --- src/ElmSharp/ElmSharp/Label.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ElmSharp/ElmSharp/Label.cs b/src/ElmSharp/ElmSharp/Label.cs index 68b7486..3a0b012 100755 --- a/src/ElmSharp/ElmSharp/Label.cs +++ b/src/ElmSharp/ElmSharp/Label.cs @@ -158,7 +158,7 @@ namespace ElmSharp } set { - if (!string.IsNullOrEmpty(value)) + if (string.IsNullOrEmpty(value)) { Interop.Elementary.elm_label_text_style_user_pop(RealHandle); } -- 2.7.4