diff options
| author | bobzel <zzzman@gmail.com> | 2020-09-29 02:46:28 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-09-29 02:46:28 -0400 |
| commit | 9ad43c9e2a068fdf6308339f6f82e29cf94d2c14 (patch) | |
| tree | c8f383b67dbe267aee9cfb214171347a6e9e5caf /src/client/views/PropertiesButtons.tsx | |
| parent | 1e28cf6d5398c22ad4ba3b7f0825d9d06899869e (diff) | |
changed sidebar functionality for textboxes to open outward and make handle blue when there are contents. added a fitToBox capability for contents of sidebar.
Diffstat (limited to 'src/client/views/PropertiesButtons.tsx')
| -rw-r--r-- | src/client/views/PropertiesButtons.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/PropertiesButtons.tsx b/src/client/views/PropertiesButtons.tsx index 462091f63..9de4f9c67 100644 --- a/src/client/views/PropertiesButtons.tsx +++ b/src/client/views/PropertiesButtons.tsx @@ -529,7 +529,7 @@ export class PropertiesButtons extends React.Component<{}, {}> { <div className="propertiesButtons-button" style={{ display: !isFreeForm ? "none" : "" }}> {this.clustersButton} </div> - <div className="propertiesButtons-button" style={{ display: !isFreeForm ? "none" : "" }}> + <div className="propertiesButtons-button" style={{ display: !isFreeForm && !isText ? "none" : "" }}> {this.fitContentButton} </div> <div className="propertiesButtons-button" style={{ display: !isInk ? "none" : "" }}> |
