Browse Source

tweak theme descriptions

Alexander Rose 2 years ago
parent
commit
5b70c14ffe
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/mol-theme/color/model-index.ts
  2. 1 1
      src/mol-theme/color/trajectory-index.ts

+ 1 - 1
src/mol-theme/color/model-index.ts

@@ -14,7 +14,7 @@ import { getPaletteParams, getPalette } from '../../mol-util/color/palette';
 import { TableLegend, ScaleLegend } from '../../mol-util/legend';
 
 const DefaultColor = Color(0xCCCCCC);
-const Description = 'Gives every model a unique color based on the position (index) of the model in the list of models in the structure.';
+const Description = 'Gives every model a unique color based on its index.';
 
 export const ModelIndexColorThemeParams = {
     ...getPaletteParams({ type: 'colors', colorList: 'many-distinct' }),

+ 1 - 1
src/mol-theme/color/trajectory-index.ts

@@ -14,7 +14,7 @@ import { getPaletteParams, getPalette } from '../../mol-util/color/palette';
 import { TableLegend, ScaleLegend } from '../../mol-util/legend';
 
 const DefaultColor = Color(0xCCCCCC);
-const Description = 'Gives every model a unique color based on the position (index) of the trajectory in the list of trajectories in the structure.';
+const Description = 'Gives every model (frame) a unique color based on the index in its trajectory.';
 
 export const TrajectoryIndexColorThemeParams = {
     ...getPaletteParams({ type: 'colors', colorList: 'purples' }),