Skip to content

Commit

Permalink
[0402/extra-keys:0.1.0] 特殊キーのキーコンフィグのリセットに失敗する問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
cwtickle committed Apr 6, 2021
1 parent 51a08ea commit a550313
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/danoni_main.js
Expand Up @@ -3617,7 +3617,7 @@ function keysConvert(_dosObj) {
}
g_keyObj[`${keyheader}_${k}`] = tmpArray[k].split(`,`).map(n => _convFunc(n));
if (baseCopyFlg) {
g_keyObj[`${keyheader}_${k}d`] = g_keyObj[`${keyheader}_${k}`].concat();
g_keyObj[`${keyheader}_${k}d`] = JSON.parse(JSON.stringify(g_keyObj[`${keyheader}_${k}`]));
}
loopFunc(k, keyheader);
}
Expand Down

0 comments on commit a550313

Please sign in to comment.