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:
Niels Martin Hansen 2007-09-21 22:36:02 +00:00
parent 6587f4882a
commit a353eaed38
1 changed files with 6 additions and 1 deletions

View File

@ -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) {