mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-04 18:25:22 +03:00
Disallow user selection
This commit is contained in:
parent
a152f2a200
commit
3c63801952
@ -142,13 +142,13 @@ export default function CameraControlPanel({ camera = '' }) {
|
||||
</Heading>
|
||||
<div className="w-full flex justify-center">
|
||||
<button onMouseDown={(e) => onSetZoom(e, 'IN')} onMouseUp={(e) => onSetStop(e)}>
|
||||
<div className="h-12 w-12 p-2 text-2xl bg-slate-500">+</div>
|
||||
<div className="h-12 w-12 p-2 text-2xl bg-slate-500 select-none">+</div>
|
||||
</button>
|
||||
</div>
|
||||
<div className="h-12" />
|
||||
<div className="flex justify-center">
|
||||
<button onMouseDown={(e) => onSetZoom(e, 'OUT')} onMouseUp={(e) => onSetStop(e)}>
|
||||
<div className="h-12 w-12 p-2 text-2xl bg-slate-500">-</div>
|
||||
<div className="h-12 w-12 p-2 text-2xl bg-slate-500 select-none">-</div>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user