forked from mia/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
10a11ce0cc
commit
2377b1455e
1 changed files with 1 additions and 1 deletions
|
@ -1589,7 +1589,7 @@ void AudioDisplay::OnMouseEvent(wxMouseEvent& event) {
|
||||||
pos = GetXAtMS(curStartMS+len+curpos);
|
pos = GetXAtMS(curStartMS+len+curpos);
|
||||||
|
|
||||||
// Grabbing syllable boundary
|
// Grabbing syllable boundary
|
||||||
if (abs64 (x - pos) < 4) {
|
if (abs64 (x - pos) < 7) {
|
||||||
wxCursor cursor(wxCURSOR_SIZEWE);
|
wxCursor cursor(wxCURSOR_SIZEWE);
|
||||||
SetCursor(cursor);
|
SetCursor(cursor);
|
||||||
defCursor = false;
|
defCursor = false;
|
||||||
|
|
Loading…
Reference in a new issue