CurveEditor popover now opens with its text selected
This commit is contained in:
parent
c9fe91db30
commit
fb53be8fe6
1 changed files with 1 additions and 0 deletions
|
@ -109,6 +109,7 @@ const CurveEditorPopover: React.FC<
|
|||
const inputRef = useRef<HTMLInputElement>(null)
|
||||
useLayoutEffect(() => {
|
||||
inputRef.current!.focus()
|
||||
inputRef.current!.setSelectionRange(0, 100)
|
||||
}, [])
|
||||
|
||||
const {index, trackData} = props
|
||||
|
|
Loading…
Reference in a new issue