Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion js/common/dialogs.js
Original file line number Diff line number Diff line change
Expand Up @@ -446,4 +446,4 @@ export {
ProgressDialog,
DeviceInfoModal,
InputModal
};
};
2 changes: 1 addition & 1 deletion js/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,4 +270,4 @@ fixViewportHeight();
window.addEventListener("resize", fixViewportHeight);
loadPanelSettings();
setupPanelFocusHandlers();
setActivePanel(editorPage);
setActivePanel(editorPage);
2 changes: 1 addition & 1 deletion js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ async function saveFileContents(path) {
saveRetryCount++;
if (saveRetryCount < MAX_SAVE_RETRIES) {
console.log(`Save retry ${saveRetryCount} of ${MAX_SAVE_RETRIES}...`);
currentTimeout = setTimeout(await saveFileContents(path), 2000);
currentTimeout = setTimeout(() => saveFileContents(path), 2000);
} else {
saveRetryCount = 0;
await showMessage(`Saving file '${workflow.currentFilename}' failed after multiple attempts. Check your connection and try again.`);
Expand Down
2 changes: 1 addition & 1 deletion sass/base/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@ h5 {
}
}
}
}
}
6 changes: 3 additions & 3 deletions sass/layout/_themes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
--plotter-background: #777;
--border-style: none;
--terminal-text-color: #ddd;
--puctuation-color: #fff;
--punctuation-color: #fff;
--operator-color: #f3f3f3;
--gutter-color: #292a2b;
--gutter-active-line-color: #222227;
Expand All @@ -23,7 +23,7 @@
--plotter-background: #ccc;
--border-style: 1px solid #{$gray-border};
--terminal-text-color: #333;
--puctuation-color: #000;
--punctuation-color: #000;
--gutter-color: #ddd;
--gutter-active-line-color: #ccc;
--gutter-text-color: #222;
Expand Down Expand Up @@ -155,7 +155,7 @@
}

.tok-punctuation {
color: var(--puctuation-color);
color: var(--punctuation-color);
}

.tok-number {
Expand Down