mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 10:15:31 +00:00
Prevent highlighting text when tapping double size mode button
This commit is contained in:
parent
15cc880682
commit
f5d09efaf8
1 changed files with 4 additions and 1 deletions
|
|
@ -35,7 +35,10 @@ const ClutterBar = memo(() => {
|
|||
id="button-d"
|
||||
className={classnames({ selected: doubled })}
|
||||
onPointerUp={handleMouseUp}
|
||||
onPointerDown={handleMouseDown}
|
||||
onPointerDown={(e) => {
|
||||
e.preventDefault();
|
||||
handleMouseDown();
|
||||
}}
|
||||
/>
|
||||
<div id="button-v" />
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue