Browse Source

remove offsetZ default from measurement label

Alexander Rose 1 year ago
parent
commit
90a4e019ac
2 changed files with 2 additions and 1 deletions
  1. 2 0
      CHANGELOG.md
  2. 0 1
      src/mol-repr/shape/loci/label.ts

+ 2 - 0
CHANGELOG.md

@@ -6,6 +6,8 @@ Note that since we don't clearly distinguish between a public and private interf
 
 ## [Unreleased]
 
+- Fix measurement label `offsetZ` default: not needed when `scaleByRadius` is enbaled
+
 ## [v3.43.1] - 2023-12-04
 
 - Fix `react-markdown` dependency

+ 0 - 1
src/mol-repr/shape/loci/label.ts

@@ -22,7 +22,6 @@ export interface LabelData {
 
 const TextParams = {
     ...LociLabelTextParams,
-    offsetZ: PD.Numeric(2, { min: 0, max: 10, step: 0.1 }),
 };
 type TextParams = typeof TextParams