Commit 0d6779d5 authored by Ritch Melton's avatar Ritch Melton
Browse files

Inverted test

Showing with 1 addition and 1 deletion
+1 -1
......@@ -297,7 +297,7 @@ namespace Svg
{
//if there is a TSpan inside of this text element then path should not be null (even if this text is empty!)
var nodes = GetContentNodes().Where(x => x is SvgContentNode)
.Select(n => string.IsNullOrEmpty(n.Content.Trim(new[] {'\r', '\n', '\t'})));
.Select(n => !string.IsNullOrEmpty(n.Content.Trim(new[] {'\r', '\n', '\t'})));
if (_path == null || IsPathDirty || nodes.Any())
{
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment