Skip to content
Snippets Groups Projects
Commit 20c9d2cc authored by Alexander Rose's avatar Alexander Rose
Browse files

enable aromaticBonds by default

parent 3b1513ad
No related branches found
No related tags found
No related merge requests found
...@@ -8,6 +8,7 @@ Note that since we don't clearly distinguish between a public and private interf ...@@ -8,6 +8,7 @@ Note that since we don't clearly distinguish between a public and private interf
- Enable temporal multi-sampling by default - Enable temporal multi-sampling by default
- Fix flickering during marking with camera at rest - Fix flickering during marking with camera at rest
- Enable ``aromaticBonds`` in structure representations by default
## [v3.0.0-dev.5] - 2021-12-16 ## [v3.0.0-dev.5] - 2021-12-16
......
...@@ -19,7 +19,7 @@ export const BondParams = { ...@@ -19,7 +19,7 @@ export const BondParams = {
includeTypes: PD.MultiSelect(ObjectKeys(BondType.Names), PD.objectToOptions(BondType.Names)), includeTypes: PD.MultiSelect(ObjectKeys(BondType.Names), PD.objectToOptions(BondType.Names)),
excludeTypes: PD.MultiSelect([] as BondType.Names[], PD.objectToOptions(BondType.Names)), excludeTypes: PD.MultiSelect([] as BondType.Names[], PD.objectToOptions(BondType.Names)),
ignoreHydrogens: PD.Boolean(false), 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)), multipleBonds: PD.Select('symmetric', PD.arrayToOptions(['off', 'symmetric', 'offset'] as const)),
}; };
export const DefaultBondProps = PD.getDefaultValues(BondParams); export const DefaultBondProps = PD.getDefaultValues(BondParams);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment