mirror of https://github.com/odrling/Aegisub
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:
parent
9550bc6366
commit
8a04053ff2
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue