Skip to content

Commit

Permalink
[0586/group-setting:0.1.0] カラー・シャッフルグループ変更後、各グループが一時的に複数化できない問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
cwtickle committed Oct 2, 2022
1 parent e25a7a1 commit 409abb7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/danoni_main.js
Original file line number Diff line number Diff line change
Expand Up @@ -2402,8 +2402,9 @@ const preheaderConvert = _dosObj => {
// 背景・マスクモーションのパス指定方法を他の設定に合わせる設定
obj.syncBackPath = setBoolVal(_dosObj.syncBackPath ?? g_presetObj.syncBackPath);

// デフォルトのカラー・シャッフルグループ設定を退避
[`color`, `shuffle`].forEach(type => {
const tmpName = Object.keys(g_keyObj).filter(val => val.startsWith(type) && val.endsWith(`_0`));
const tmpName = Object.keys(g_keyObj).filter(val => val.startsWith(type));
tmpName.forEach(property => g_dfKeyObj[property] = structuredClone(g_keyObj[property]));
});

Expand Down

0 comments on commit 409abb7

Please sign in to comment.