Skip to content
Snippets Groups Projects
Commit b36b40ca authored by Sato Hiroyuki's avatar Sato Hiroyuki
Browse files

Fix minor bug about line overlap.

parent 85c468ec
No related branches found
No related tags found
No related merge requests found
Loading
@@ -190,7 +190,7 @@ module Network
Loading
@@ -190,7 +190,7 @@ module Network
l.spaces << space l.spaces << space
# Also add space to parent # Also add space to parent
l.parents(@map).each do |parent| l.parents(@map).each do |parent|
if parent.space > 0 if 0 < parent.space && parent.space < space
parent.spaces << space parent.spaces << space
end end
end end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment