fix watchers.

This commit is contained in:
Miroslav Šedivý 2024-03-24 16:06:55 +01:00
parent 3a96d2611e
commit b6be4f09fc
2 changed files with 4 additions and 4 deletions

View File

@ -706,7 +706,7 @@ function onResize() {
}
}
watch(() => state.screen.size, onScreenSyncChange)
watch(() => state.screen.size, onResize)
function updateConnectionType() {
if (screencast.value) {

View File

@ -174,7 +174,7 @@ onMounted(() => {
}
keyboard.listenTo(textarea.value!)
// bind touch handler using @Watch on supportedTouchEvents
// bind touch handler using `watch` on supportedTouchEvents
// because we need to know if touch events are supported
// by the server before we can bind touch handler
@ -532,7 +532,7 @@ function onTextInputChange() {
textInput.value = ''
}
watch(() => textInput.value, onTextInputChange)
watch(textInput, onTextInputChange)
function onWheel(e: WheelEvent) {
if (!props.isControling) {
@ -713,8 +713,8 @@ function restartInactiveCursorInterval() {
}
watch(focused, restartInactiveCursorInterval)
watch(() => props.inactiveCursors, restartInactiveCursorInterval)
watch(() => props.isControling, restartInactiveCursorInterval)
watch(() => props.inactiveCursors, restartInactiveCursorInterval)
function saveInactiveMousePos(e: MouseEvent) {
const pos = getMousePos(e.clientX, e.clientY)