summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSungtaek Hong <sth253.hong@samsung.com>2017-06-12 17:22:40 +0900
committerSungtaek Hong <sth253.hong@samsung.com>2017-06-12 17:22:40 +0900
commit6f52c5b31628ab79d50d4b8c20389e26090952da (patch)
tree1b5dda467e75ee09f6b8dd2de6589533c0452fca
parent35938cb245eff3661b500bea2cc6e859e6dd1ef8 (diff)
downloadelm-sharp-6f52c5b31628ab79d50d4b8c20389e26090952da.tar.gz
elm-sharp-6f52c5b31628ab79d50d4b8c20389e26090952da.tar.bz2
elm-sharp-6f52c5b31628ab79d50d4b8c20389e26090952da.zip
Label: fix wrong condition for TextStyle set/get
Change-Id: I90e4aea48c404bbe56c5cfe721f1c428407dc8e5 Signed-off-by: Sungtaek Hong <sth253.hong@samsung.com>
-rwxr-xr-xElmSharp/ElmSharp/Label.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ElmSharp/ElmSharp/Label.cs b/ElmSharp/ElmSharp/Label.cs
index 68b7486..3a0b012 100755
--- a/ElmSharp/ElmSharp/Label.cs
+++ b/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);
}