remove editing things from mobile
This commit is contained in:
@@ -132,7 +132,6 @@ export default class ComfyApp {
|
|||||||
this.addPasteHandler();
|
this.addPasteHandler();
|
||||||
this.addKeyboardHandler();
|
this.addKeyboardHandler();
|
||||||
|
|
||||||
|
|
||||||
// await this.#invokeExtensionsAsync("setup");
|
// await this.#invokeExtensionsAsync("setup");
|
||||||
|
|
||||||
// Ensure the canvas fills the window
|
// Ensure the canvas fills the window
|
||||||
|
|||||||
@@ -33,7 +33,7 @@
|
|||||||
{@const node = app.lGraph.getNodeById(id)}
|
{@const node = app.lGraph.getNodeById(id)}
|
||||||
<div class:is-executing={$queueState.runningNodeId === node.id}>
|
<div class:is-executing={$queueState.runningNodeId === node.id}>
|
||||||
<Block>
|
<Block>
|
||||||
<label for={String(id)} class={$uiState.unlocked ? "edit-title-label" : ""}>
|
<label for={String(id)}>
|
||||||
<BlockTitle>
|
<BlockTitle>
|
||||||
{node.title}
|
{node.title}
|
||||||
</BlockTitle>
|
</BlockTitle>
|
||||||
@@ -41,9 +41,6 @@
|
|||||||
{#each $widgetState[id] as item}
|
{#each $widgetState[id] as item}
|
||||||
<svelte:component this={getComponentForWidgetState(item)} {item} />
|
<svelte:component this={getComponentForWidgetState(item)} {item} />
|
||||||
{/each}
|
{/each}
|
||||||
{#if $uiState.unlocked}
|
|
||||||
<div class="handle" on:mousedown={startDrag} on:touchstart={startDrag} on:mouseup={stopDrag} on:touchend={stopDrag}/>
|
|
||||||
{/if}
|
|
||||||
</Block>
|
</Block>
|
||||||
</div>
|
</div>
|
||||||
{/each}
|
{/each}
|
||||||
|
|||||||
Reference in New Issue
Block a user