remove editing things from mobile

This commit is contained in:
space-nuko
2023-04-29 01:40:31 -07:00
parent 7835b3e6d6
commit b94c1a7bea
2 changed files with 1 additions and 5 deletions

View File

@@ -132,7 +132,6 @@ export default class ComfyApp {
this.addPasteHandler();
this.addKeyboardHandler();
// await this.#invokeExtensionsAsync("setup");
// Ensure the canvas fills the window

View File

@@ -33,7 +33,7 @@
{@const node = app.lGraph.getNodeById(id)}
<div class:is-executing={$queueState.runningNodeId === node.id}>
<Block>
<label for={String(id)} class={$uiState.unlocked ? "edit-title-label" : ""}>
<label for={String(id)}>
<BlockTitle>
{node.title}
</BlockTitle>
@@ -41,9 +41,6 @@
{#each $widgetState[id] as item}
<svelte:component this={getComponentForWidgetState(item)} {item} />
{/each}
{#if $uiState.unlocked}
<div class="handle" on:mousedown={startDrag} on:touchstart={startDrag} on:mouseup={stopDrag} on:touchend={stopDrag}/>
{/if}
</Block>
</div>
{/each}