fix: enable middle mouse pan in autocomplete text widget

Remove pointer event .stop modifiers from textarea to allow events
to propagate to container where forwardMiddleMouseToCanvas forwards them
to ComfyUI canvas for pan functionality
This commit is contained in:
Will Miao
2026-01-26 23:32:04 +08:00
parent 9032226724
commit 0ff551551e
3 changed files with 7 additions and 16 deletions

View File

@@ -6,9 +6,6 @@
:spellcheck="spellcheck ?? false"
:class="['text-input', { 'vue-dom-mode': isVueDomMode }]"
@input="onInput"
@pointerdown.stop
@pointermove.stop
@pointerup.stop
/>
</div>
</template>