This commit is contained in:
Nadar
2026-01-12 10:22:56 +03:00
parent 12ce381abd
commit d08b011596
5 changed files with 17 additions and 2 deletions

View File

@@ -47,6 +47,18 @@
<!-- <label for="outputDevice">Output device</label> -->
<!-- </PrimeFloatLabel> -->
<PrimeDivider align="left">
Video
</PrimeDivider>
<div>
<div class="flex justify-between text-sm mb-3">
<span>FPS</span>
<span>{{ shareFps }}</span>
</div>
<PrimeSlider v-model="shareFps" class="mx-[10px]" :min="30" :max="60" :step="5" />
</div>
<template v-if="isTauri">
<PrimeDivider align="left">
Hotkeys
@@ -117,6 +129,7 @@ const {
toggleOutputHotkey,
inputDeviceExist,
outputDeviceExist,
shareFps,
} = usePreferences()
const setupToggleInputHotkey = (event: KeyboardEvent) => setupHotkey(event, toggleInputHotkey)