Skip to content

Commit

Permalink
Merge pull request #1311 from cwtickle/hotfix/0582-color-type
Browse files Browse the repository at this point in the history
fix: [0582] ColorType: Type0が既定値にならない問題を修正
  • Loading branch information
cwtickle committed Oct 2, 2022
2 parents 5692d49 + dcb509c commit 15a958d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion js/danoni_main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4971,7 +4971,9 @@ const createOptionWindow = _sprite => {
resetColorType({ _fromObj: storageObj, _from: addKey, _toObj: g_dfColorObj, _to: g_keycons.colorSelf });

} else {
g_colorType = `Default`;
if (g_localStorage.colorType === g_keycons.colorSelf) {
g_colorType = `Default`;
}
g_keycons.colorTypes = g_keycons.colorTypes.filter(val => val !== g_keycons.colorSelf);
}

Expand Down

0 comments on commit 15a958d

Please sign in to comment.