瀏覽代碼

fix .firstChainLoc assignment in handleUnitChainsSimple

Alexander Rose 5 年之前
父節點
當前提交
4434dfb79a
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/mol-model/structure/structure/element/stats.ts

+ 1 - 1
src/mol-model/structure/structure/element/stats.ts

@@ -186,7 +186,7 @@ export namespace Stats {
                 // full chain
                 stats.chainCount += 1;
                 if (stats.chainCount === 1) {
-                    Location.set(stats.firstChainLoc, unit, elements[offsets[cI]]);
+                    Location.set(stats.firstChainLoc, unit, offsets[cI]);
                 }
             }
         }