Skip to content

Commit

Permalink
Fix subtree size and heights in heap mode
Browse files Browse the repository at this point in the history
  • Loading branch information
edemaine committed Oct 3, 2024
1 parent 4e20618 commit 4c9311f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions index.civet
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,11 @@ class SpriteNode
[@x, other.x] = [other.x, @x]
[@y, other.y] = [other.y, @y]
[@key, other.key] = [other.key, @key]
[@size, other.size] = [other.size, @size]
[@height, other.height] = [other.height, @height]
[@sizeText, other.sizeText] = [other.sizeText, @sizeText]
[@heightText, other.heightText] = [other.heightText, @heightText]
[@loaded, other.loaded] = [other.loaded, @loaded]

class SpriteTree
svg: Svg
Expand Down

0 comments on commit 4c9311f

Please sign in to comment.