summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
}