diff options
author | Geireann Lindfield Roberts <60007097+geireann@users.noreply.github.com> | 2021-07-22 15:27:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-22 15:27:58 -0400 |
commit | a77809e5afdfa0952ceddf262d61b0a11e45a591 (patch) | |
tree | d4f1d87ed48619644b0913c46247f711d314a1f2 /src/client/views/PropertiesView.tsx | |
parent | 2b2329a928772b3e0d45fca1e99ef29116c582f2 (diff) | |
parent | 44f74e1e8ee82e76d32c6e5e0812ac04bf81c16c (diff) |
Merge pull request #21 from brown-dash/ink-gfx-victor
Ink Changes (Handle Tangency, Visual Updates, Control Point Creation)
Diffstat (limited to 'src/client/views/PropertiesView.tsx')
-rw-r--r-- | src/client/views/PropertiesView.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/PropertiesView.tsx b/src/client/views/PropertiesView.tsx index d09d949ff..4df3e4f00 100644 --- a/src/client/views/PropertiesView.tsx +++ b/src/client/views/PropertiesView.tsx @@ -86,7 +86,7 @@ export class PropertiesView extends React.Component<PropertiesViewProps> { @observable openSlideOptions: boolean = false; @observable inOptions: boolean = false; - @observable _controlBtn: boolean = false; + @observable _controlButton: boolean = false; @observable _lock: boolean = false; componentDidMount() { @@ -540,7 +540,7 @@ export class PropertiesView extends React.Component<PropertiesViewProps> { const formatInstance = InkStrokeProperties.Instance; return !formatInstance ? (null) : <div className="inking-button"> <Tooltip title={<div className="dash-tooltip">{"Edit points"}</div>}> - <div className="inking-button-points" onPointerDown={action(() => formatInstance._controlBtn = !formatInstance._controlBtn)} style={{ backgroundColor: formatInstance._controlBtn ? "black" : "" }}> + <div className="inking-button-points" onPointerDown={action(() => formatInstance._controlButton = !formatInstance._controlButton)} style={{ backgroundColor: formatInstance._controlButton ? "black" : "" }}> <FontAwesomeIcon icon="bezier-curve" color="white" size="lg" /> </div> </Tooltip> |