mirror of
https://github.com/odrling/Aegisub
synced 2025-04-11 22:56:02 +02:00
Use Cmd+Rightclick instead of Ctrl+Rightclick on Mac to move line end marker in karaoke mode.
Originally committed to SVN as r1573.
This commit is contained in:
parent
6587f4882a
commit
a353eaed38
@ -1483,7 +1483,12 @@ void AudioDisplay::OnMouseEvent(wxMouseEvent& event) {
|
||||
// Grab start/end
|
||||
if (hold == 0) {
|
||||
bool gotGrab = false;
|
||||
bool karTime = karMode && !event.ControlDown();
|
||||
bool karTime = karMode && !
|
||||
#ifdef __APPLE__
|
||||
event.CmdDown();
|
||||
#else
|
||||
event.ControlDown();
|
||||
#endif
|
||||
|
||||
// Line timing mode
|
||||
if (!karTime) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user