Skip to content

Commit

Permalink
Merge pull request #636 from intechstudio/stable_fixes
Browse files Browse the repository at this point in the history
Stable fixes
  • Loading branch information
SukuWc authored Mar 7, 2024
2 parents 6c719cf + bf85a94 commit 80e2a73
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/renderer/config-blocks/VarGlobal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@
{/if}
<MoltenPushButton
on:click={sendData}
disabled={Boolean(!commitState && parenthesisError && variableNameError)}
disabled={Boolean(!commitState || parenthesisError || variableNameError)}
text={"Commit"}
style={ButtonStyle.ACCEPT}
/>
Expand All @@ -250,7 +250,7 @@
/>
</div>
<div class="w-9/12 pl-1">
<div class="w-full h-full p-1 bg-secondary">
<div class="w-full h-full bg-secondary">
{#key rerenderList}
<LineEditor
on:output={(e) => {
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/config-blocks/VarLocals.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@
{/if}
<MoltenPushButton
on:click={sendData}
disabled={Boolean(!commitState && parenthesisError && variableNameError)}
disabled={Boolean(!commitState || parenthesisError || variableNameError)}
text={"Commit"}
style={ButtonStyle.ACCEPT}
/>
Expand All @@ -253,7 +253,7 @@
/>
</div>
<div class="w-9/12 pl-1">
<div class="w-full h-full p-1 bg-secondary">
<div class="w-full h-full bg-secondary">
{#key rerenderList}
<LineEditor
on:output={(e) => {
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/config-blocks/VarSelf.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@
{/if}
<MoltenPushButton
on:click={sendData}
disabled={Boolean(!commitState && parenthesisError && variableNameError)}
disabled={Boolean(!commitState || parenthesisError || variableNameError)}
text={"Commit"}
style={ButtonStyle.ACCEPT}
/>
Expand All @@ -254,7 +254,7 @@
/>
</div>
<div class="w-9/12 pl-1">
<div class="w-full h-full p-1 bg-secondary">
<div class="w-full h-full bg-secondary">
{#key rerenderList}
<LineEditor
on:output={(e) => {
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/config-blocks/headers/ConditionIfFace.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<span class="mr-4">If</span>

<div
class="bg-secondary p-1 my-auto mr-1 rounded flex items-center flex-grow h-full"
class="bg-secondary my-auto mr-1 rounded flex items-center flex-grow h-full"
>
<LineEditor
on:change={(e) => {
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/main/user-interface/LineEditor.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
<!-- svelte-ignore a11y-no-static-element-interactions -->
<div
id="monaco_container"
class="{$$props.class} grid grid-cols-1 w-full h-full items-center"
class="{$$props.class} grid grid-cols-1 w-full h-full items-center p-1"
>
<div
id="line-editor"
Expand Down

0 comments on commit 80e2a73

Please sign in to comment.