Skip to content

Commit

Permalink
Enabled Changing of Column values
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronge-2020 committed Apr 11, 2024
1 parent 30d09b7 commit ee858e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions javascript/drawCanvas.js
Original file line number Diff line number Diff line change
Expand Up @@ -947,6 +947,7 @@ function saveCore(core) {
if (
oldRow !== parseInt(document.getElementById("editRowInput").value, 10) &&
oldRow !== -1
&& document.getElementById("editAutoUpdateRowsCheckbox").checked
) {
updateRowsInGridAfterRemoval(oldRow);
}
Expand Down
2 changes: 1 addition & 1 deletion javascript/main2.js
Original file line number Diff line number Diff line change
Expand Up @@ -1209,7 +1209,7 @@ const initSegmentation = async () => {
const autoAssignRowColLabel = document.createElement("label");
autoAssignRowColLabel.htmlFor = "editAutoUpdateRowsCheckbox";
autoAssignRowColLabel.className = "osdViewerCheckboxLabel";
autoAssignRowColLabel.innerText = "Auto Row";
autoAssignRowColLabel.innerText = "Auto Row/Col";

autoAssignRowColCheckbox.addEventListener("change", toggleRowInput);

Expand Down

0 comments on commit ee858e6

Please sign in to comment.