Browse Source

enable aromaticBonds by default

Alexander Rose 3 years ago
parent
commit
20c9d2cc41
2 changed files with 3 additions and 2 deletions
  1. 2 1
      CHANGELOG.md
  2. 1 1
      src/mol-repr/structure/visual/util/bond.ts

+ 2 - 1
CHANGELOG.md

@@ -8,6 +8,7 @@ Note that since we don't clearly distinguish between a public and private interf
 
 - Enable temporal multi-sampling by default
     - Fix flickering during marking with camera at rest
+- Enable ``aromaticBonds`` in structure representations by default
 
 ## [v3.0.0-dev.5] - 2021-12-16
 
@@ -37,7 +38,7 @@ Note that since we don't clearly distinguish between a public and private interf
 
 - Add multiple lights support (with color, intensity, and direction parameters)
 - [Breaking] Add per-object material rendering properties
-  - ``SimpleSettingsParams.lighting.renderStyle`` and ``RendererParams.style`` were removed
+    - ``SimpleSettingsParams.lighting.renderStyle`` and ``RendererParams.style`` were removed
 - Add substance theme with per-group material rendering properties
 - ``StructureComponentManager.Options`` state saving support
 - ``ParamDefinition.Group.presets`` support

+ 1 - 1
src/mol-repr/structure/visual/util/bond.ts

@@ -19,7 +19,7 @@ export const BondParams = {
     includeTypes: PD.MultiSelect(ObjectKeys(BondType.Names), PD.objectToOptions(BondType.Names)),
     excludeTypes: PD.MultiSelect([] as BondType.Names[], PD.objectToOptions(BondType.Names)),
     ignoreHydrogens: PD.Boolean(false),
-    aromaticBonds: PD.Boolean(false, { description: 'Display aromatic bonds with dashes' }),
+    aromaticBonds: PD.Boolean(true, { description: 'Display aromatic bonds with dashes' }),
     multipleBonds: PD.Select('symmetric', PD.arrayToOptions(['off', 'symmetric', 'offset'] as const)),
 };
 export const DefaultBondProps = PD.getDefaultValues(BondParams);