diff options
author | bobzel <zzzman@gmail.com> | 2023-08-27 13:37:45 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-08-27 13:37:45 -0400 |
commit | e566cdb001da320b5ee3f7fa60d96b7a09a195c3 (patch) | |
tree | 3d4373ede28da858ae964edffa8539961f148471 /src/client/views/MainView.tsx | |
parent | 0332a80329328e39c244623d5090331b83df339c (diff) | |
parent | 6d60b14e109e527ddc7a096af858cbc05dab3480 (diff) |
Merge branch 'master' into data-visualization-sarah
Diffstat (limited to 'src/client/views/MainView.tsx')
-rw-r--r-- | src/client/views/MainView.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/client/views/MainView.tsx b/src/client/views/MainView.tsx index cbe06a9c0..c81bc70b8 100644 --- a/src/client/views/MainView.tsx +++ b/src/client/views/MainView.tsx @@ -813,9 +813,8 @@ export class MainView extends React.Component { {this.dockingContent} {this._hideUI ? null : ( - <div className="mainView-propertiesDragger" - key="props" onPointerDown={this.onPropertiesPointerDown} style={{ background: StrCast(Doc.UserDoc().userBackgroundColor), right: this.propertiesWidth() - 1}}> - <FontAwesomeIcon icon={this.propertiesWidth() < 10 ? 'chevron-left' : 'chevron-right'} color={StrCast(Doc.UserDoc().userColor)} size="sm" /> + <div className="mainView-propertiesDragger" key="props" onPointerDown={this.onPropertiesPointerDown} style={{ background: SettingsManager.Instance.userBackgroundColor, right: this.propertiesWidth() - 1 }}> + <FontAwesomeIcon icon={this.propertiesWidth() < 10 ? 'chevron-left' : 'chevron-right'} color={SettingsManager.Instance.userColor} size="sm" /> </div> )} <div className="properties-container" style={{ width: this.propertiesWidth() }}> |