Skip to content

Commit

Permalink
Important flexi visibility fix for strings
Browse files Browse the repository at this point in the history
  • Loading branch information
slodge committed Jan 17, 2013
1 parent 1e06da6 commit 2342433
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -40,7 +40,7 @@ protected static bool IsATrueValue(object value, object parameter, bool defaultV

if (value is string)
{
return string.IsNullOrWhiteSpace(value as string);
return !string.IsNullOrWhiteSpace(value as string);
}

return defaultValue;
Expand Down

0 comments on commit 2342433

Please sign in to comment.