diff options
| author | bobzel <zzzman@gmail.com> | 2023-08-31 12:36:33 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-08-31 12:36:33 -0400 |
| commit | 5651f5428f8464ae0f131c73601b69aba11dff98 (patch) | |
| tree | d214438478341dfe9183ac7a412f5cb13820010a /src/client/views/nodes/trails | |
| parent | d9609e3140ce481942e7de575751857c5774531d (diff) | |
fixed properties view text colors
Diffstat (limited to 'src/client/views/nodes/trails')
| -rw-r--r-- | src/client/views/nodes/trails/PresBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/trails/PresBox.tsx b/src/client/views/nodes/trails/PresBox.tsx index 7bb1b80a3..92c130ea1 100644 --- a/src/client/views/nodes/trails/PresBox.tsx +++ b/src/client/views/nodes/trails/PresBox.tsx @@ -1691,7 +1691,7 @@ export class PresBox extends ViewBoxBaseComponent<FieldViewProps>() { </div> ); const presDirection = (direction: PresEffectDirection, icon: string, gridColumn: number, gridRow: number, opts: object) => { - const color = activeItem.presentation_effectDirection === direction || (direction === PresEffectDirection.Center && !activeItem.presentation_effectDirection) ? Colors.LIGHT_BLUE : 'black'; + const color = activeItem.presentation_effectDirection === direction || (direction === PresEffectDirection.Center && !activeItem.presentation_effectDirection) ? SettingsManager.userVariantColor : SettingsManager.userColor; return ( <Tooltip title={<div className="dash-tooltip">{direction}</div>}> <div |
