Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ショートカットキーを初期値に戻す際に、衝突チェックを行うようにしました #1619

Merged
merged 2 commits into from
Oct 25, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions src/components/HotkeySettingDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -361,9 +361,20 @@
.getDefaultHotkeySettings()
.then((defaultSettings: HotkeySetting[]) => {
const setting = defaultSettings.find((value) => value.action == action);
if (setting) {
changeHotkeySettings(action, setting.combination);
if (setting === undefined) {
return;
}
// デフォルトが未設定でない場合は、衝突チェックを行う
if (setting.combination) {
const duplicated = hotkeySettings.value.find((item) =>

Check failure on line 369 in src/components/HotkeySettingDialog.vue

View workflow job for this annotation

GitHub Actions / lint

Insert `⏎············`

Check failure on line 369 in src/components/HotkeySettingDialog.vue

View workflow job for this annotation

GitHub Actions / build-test

Insert `⏎············`
item.combination == setting.combination && item.action != action);

Check failure on line 370 in src/components/HotkeySettingDialog.vue

View workflow job for this annotation

GitHub Actions / lint

Insert `⏎··········`

Check failure on line 370 in src/components/HotkeySettingDialog.vue

View workflow job for this annotation

GitHub Actions / build-test

Insert `⏎··········`
if (duplicated !== undefined) {
openHotkeyDialog(action);
lastRecord.value = duplicated.combination;
return;
}
}
changeHotkeySettings(action, setting.combination);
});
}
};
Expand Down
Loading