diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-06-13 13:31:55 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-06-13 13:31:55 +0200 |
commit | 421b3191fd692ef01fbc4356132f9745ef087700 (patch) | |
tree | 0620c0320258a7a6bbcf828c3c8dfba070909523 /components | |
parent | eee30e2556e555affbd0f3034b4b2089352cea7c (diff) |
selection in timeline working sorta
Diffstat (limited to 'components')
-rw-r--r-- | components/selection.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/selection.tsx b/components/selection.tsx index 4a0812f..d1753f0 100644 --- a/components/selection.tsx +++ b/components/selection.tsx @@ -68,7 +68,7 @@ export default function Selection(props: { left?: slideTypes; right?: slideTypes; }) { - var small = props.width < 24 || props.height < 24; + var small = props.width < 24 || props.height < 24 || !props.left || !props.right; return <div className='selection' style={{ |