1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-09 08:31:13 +02:00

Again disable tooltips for vertical rulers.

This commit is contained in:
Paul Licameli 2017-07-17 11:11:41 -04:00
parent e86fd3c990
commit 1b8f3daaec
2 changed files with 4 additions and 4 deletions

View File

@ -59,8 +59,8 @@ HitTestPreview NoteTrackVZoomHandle::HitPreview(const wxMouseState &state)
_("Click to verticaly zoom in, Shift-click to zoom out, Drag to create a particular zoom region.");
return {
message,
(state.ShiftDown() ? &*zoomOutCursor : &*zoomInCursor),
message
(state.ShiftDown() ? &*zoomOutCursor : &*zoomInCursor)
// , message
};
}

View File

@ -505,8 +505,8 @@ HitTestPreview WaveTrackVZoomHandle::HitPreview(const wxMouseState &state)
_("Click to vertically zoom in. Shift-click to zoom out. Drag to specify a zoom region.");
return {
message,
(state.ShiftDown() ? &*zoomOutCursor : &*zoomInCursor),
message
(state.ShiftDown() ? &*zoomOutCursor : &*zoomInCursor)
// , message
};
}