Skip to content

Commit

Permalink
01.03.07
Browse files Browse the repository at this point in the history
Fixed bug with boolean global input panel
  • Loading branch information
MintyTrebor authored Nov 3, 2024
1 parent 5a1fa69 commit 59a5755
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/BtnCmdMainPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -972,9 +972,9 @@ export default {
showSBCCEdit: false,
tmpSBCCDef: {},
lastLayoutTabID: null,
btnCmdVersion: '01.03.06',
btnCmdVersion: '01.03.07',
btnCmd : {
btnCmdVersion: '01.03.06',
btnCmdVersion: '01.03.07',
btnCmdIDUpdateRun: true,
systemSettings: {
lastID: 1,
Expand Down
2 changes: 1 addition & 1 deletion src/BtnCmdVInputPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ export default {
tmpCmd = `set global.${this.passedObject.inputVarName} = ${tmpValue}`;
tmpParent.code = tmpCmd;
await tmpParent.send();
this.passedObject.inputLastVal = Number(tmpValue);
this.passedObject.inputLastVal = tmpValue;
}
if(this.passedObject.inputAfterChangeGCodeCMD){
let tmpCmdStr = this.passedObject.inputAfterChangeGCodeCMD.replace("##VALUE##", tmpValue.toString());
Expand Down

0 comments on commit 59a5755

Please sign in to comment.