Commit b36b40ca authored by Sato Hiroyuki's avatar Sato Hiroyuki

Fix minor bug about line overlap.

parent 85c468ec
......@@ -190,7 +190,7 @@ module Network
l.spaces << space
# Also add space to parent
l.parents(@map).each do |parent|
if parent.space > 0
if 0 < parent.space && parent.space < space
parent.spaces << space
end
end
......
Markdown is supported
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