Increase grabbing zone for karaoke split markers from 4 to 7 pixels, makes dragging much easier, speeding up work.

Originally committed to SVN as r2971.
This commit is contained in:
Niels Martin Hansen 2009-05-22 14:30:51 +00:00
parent 9550bc6366
commit 8a04053ff2

View file

@ -1589,7 +1589,7 @@ void AudioDisplay::OnMouseEvent(wxMouseEvent& event) {
pos = GetXAtMS(curStartMS+len+curpos);
// Grabbing syllable boundary
if (abs64 (x - pos) < 4) {
if (abs64 (x - pos) < 7) {
wxCursor cursor(wxCURSOR_SIZEWE);
SetCursor(cursor);
defCursor = false;