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

ソング:macOSでのピッチ編集結果削除の操作を右クリックからcmd+クリックにする #2009

Closed
Hiroshiba opened this issue Apr 25, 2024 · 0 comments · Fixed by #2013

Comments

@Hiroshiba
Copy link
Member

Hiroshiba commented Apr 25, 2024

内容

ピッチ編集したものを削除するのはwin・linuxではctrl+左クリックになっています。
一方でmacでこれをすると右クリックになるので、応急処置で右クリックにアクションを割り当てています。

順当に行くとmacではwinのctrlキーをcmdキーで代替していることが多いので、ピッチ編集の削除はcmd+左クリックが良いのかなと!

Pros 良くなる点

操作方法が統一される

実現方法

該当コードこの辺りです↓

if (isMac) {
// Macの場合、左ボタンでDRAW、右ボタンでERASE
if (mouseButton === "LEFT_BUTTON") {
startPreview(event, "DRAW_PITCH");
} else if (mouseButton === "RIGHT_BUTTON") {
startPreview(event, "ERASE_PITCH");
}
} else if (mouseButton === "LEFT_BUTTON") {
// Mac以外の場合、左ボタンでDRAW、左ボタン+CtrlでERASE
if (event.ctrlKey) {
startPreview(event, "ERASE_PITCH");
} else {
startPreview(event, "DRAW_PITCH");
}
}
} else {

その他

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
1 participant