Skip to content

Commit

Permalink
#2585 Change behaviour of "Show hydrogen labels" setting so the "on" …
Browse files Browse the repository at this point in the history
…value works the same way as "terminal and hetero" (#2589)
  • Loading branch information
KonstantinEpam23 committed May 9, 2023
1 parent dd2e2a0 commit 1a90837
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 9 additions & 1 deletion packages/ketcher-core/src/application/render/restruct/reatom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,15 @@ export enum ShowHydrogenLabels {
Hetero = 'Hetero',
Terminal = 'Terminal',
TerminalAndHetero = 'Terminal and Hetero',
On = 'on'
On = 'all'
}

export enum ShowHydrogenLabelNames {
Off = 'Off',
Hetero = 'Hetero',
Terminal = 'Terminal',
TerminalAndHetero = 'Terminal and Hetero',
On = 'On'
}

class ReAtom extends ReObject {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
import {
StereLabelStyleType,
StereoColoringType,
ShowHydrogenLabels
ShowHydrogenLabels,
ShowHydrogenLabelNames
} from 'ketcher-core'
import Ajv, { SchemaObject } from 'ajv'

Expand Down Expand Up @@ -200,6 +201,7 @@ const render: {
showHydrogenLabels: {
title: 'Show hydrogen labels',
enum: Object.values(ShowHydrogenLabels),
enumNames: Object.values(ShowHydrogenLabelNames),
default: ShowHydrogenLabels.TerminalAndHetero
},
// Bonds
Expand Down

0 comments on commit 1a90837

Please sign in to comment.