diff options
author | bobzel <zzzman@gmail.com> | 2023-02-22 15:58:20 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-02-22 15:58:20 -0500 |
commit | ea4588185f165f66a4d596d51a8a8ad955985762 (patch) | |
tree | 79b137c6ea9fea7edcf7147bcfc8f4160652ad5f /src/client/views/nodes/button/FontIconBox.tsx | |
parent | 99b63e35ddf40fc1a69d50059b72275ce23ac43e (diff) |
fixed pres hide before/after, select w/o nav, and updating contents.. made collections fitWidth by default so that they resize like a normal window. Made freeform pan/zoom animate when changing keyframes. allow nesting of keyframe collections.. made presEffects work even if there's no transition movement. made nested collection timelines follow parent by default, but with ability to change ordering. fixed treeView incremental render. treat doc anchors are preselements instead of delegating. don't highlight ink when dragging ctrl pts.
Diffstat (limited to 'src/client/views/nodes/button/FontIconBox.tsx')
-rw-r--r-- | src/client/views/nodes/button/FontIconBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/button/FontIconBox.tsx b/src/client/views/nodes/button/FontIconBox.tsx index b352f3790..93761633c 100644 --- a/src/client/views/nodes/button/FontIconBox.tsx +++ b/src/client/views/nodes/button/FontIconBox.tsx @@ -179,7 +179,7 @@ export class FontIconBox extends DocComponent<ButtonProps>() { className="list-item" key={`${value}`} style={{ - backgroundColor: value === checkResult ? Colors.LIGHT_BLUE : undefined, + backgroundColor: value.toString() === checkResult ? Colors.LIGHT_BLUE : undefined, }} onClick={() => setValue(value)}> {value} |