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
1 changed files with 6 additions and 1 deletions
|
@ -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…
Reference in a new issue