-
Notifications
You must be signed in to change notification settings - Fork 309
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
トーク:全選択ショートカットキーをctrl+Aに変更する #2044
The head ref may contain hidden characters: "\u5168\u9078\u629E\u30B7\u30E7\u30FC\u30C8\u30AB\u30C3\u30C8\u30AD\u30FC\u3092ctrl+A\u306B\u5909\u66F4\u3059\u308B"
Conversation
@sevenc-nanashi @ShimagayaSatoka もしよかったらレビューいただけると・・・!! |
label: "全セルを選択", | ||
onClick: async () => { | ||
if (!uiLocked.value) { | ||
await store.dispatch("SET_SELECTED_AUDIO_KEYS", { | ||
audioKeys: audioKeys.value, | ||
}); | ||
} | ||
}, | ||
disableWhenUiLocked: true, | ||
}, | ||
...(isMultiSelectEnabled.value | ||
? [ | ||
{ | ||
type: "button", | ||
label: "すべて選択", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
「全セルを選択」を「すべて選択」に統一しました。
ちょっとややこしくなったかもなのですが、どうでしょう・・・?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
「すべて」でたしかに良さそうです
何をと書かなくても、選択できるものは各エディタで一種類ずつしかないので
それとセルと呼ぶよりかえって混乱が少ない気もしました
{ | ||
action: "全セルを選択", | ||
combination: HotkeyCombination(!isMac ? "Ctrl Shift A" : "Meta Shift A"), | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
まだリリース前なのでマイグレーションコードは書かずに削除しています
問題ないと思うのでマージします! |
内容
こちらのissueの内容です。
こちらの続きです
関連 Issue
close #1962
その他
ついでに複数選択がONのときだけ実行できるようにしておきました。(忘れてた)