We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9445726 commit d4d6659Copy full SHA for d4d6659
src/renderer/extensions/vueNodes/components/LGraphNode.vue
@@ -280,10 +280,10 @@ onMounted(() => {
280
const { startResize } = useNodeResize(
281
(newSize, element) => {
282
// Apply size directly to DOM element - ResizeObserver will pick this up
283
- if (!isCollapsed.value) {
284
- element.style.width = `${newSize.width}px`
285
- element.style.height = `${newSize.height}px`
286
- }
+ if (isCollapsed.value) return
+
+ element.style.width = `${newSize.width}px`
+ element.style.height = `${newSize.height}px`
287
},
288
{
289
transformState
0 commit comments