From 2fdf0713d38a1b62aca68a4b6d5792226d4bd557 Mon Sep 17 00:00:00 2001 From: Scott Vorthmann Date: Tue, 15 Aug 2017 23:53:10 -0700 Subject: [PATCH] Fixed article snapshot rendering RenderedManifestation.copy() was not handling the new fixedLocation field, resulting in odd missing parts in article page views. --- src/main/java/com/vzome/core/render/RenderedManifestation.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/vzome/core/render/RenderedManifestation.java b/src/main/java/com/vzome/core/render/RenderedManifestation.java index 09121fd..f9d3824 100644 --- a/src/main/java/com/vzome/core/render/RenderedManifestation.java +++ b/src/main/java/com/vzome/core/render/RenderedManifestation.java @@ -37,7 +37,7 @@ public class RenderedManifestation private boolean mPickable = true; private AlgebraicVector location; - private final AlgebraicVector fixedLocation; + private AlgebraicVector fixedLocation; private int strutZone = -1; @@ -236,6 +236,7 @@ public RenderedManifestation copy() { RenderedManifestation copy = new RenderedManifestation( null ); copy .location = this .location; + copy .fixedLocation = this .fixedLocation; copy .mColorName = this .mColorName; copy .color = this .color; copy .mGlow = this .mGlow;