1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-22 15:20:15 +02:00

Fix note track status message

'verticaly' isn't a word; it's better to just completely reuse the wave track message.
This commit is contained in:
Pokechu22 2017-06-30 10:14:46 -07:00 committed by Paul Licameli
parent b7d6077af5
commit e7065d9e86

View File

@ -92,7 +92,7 @@ HitTestPreview NoteTrackVZoomHandle::HitPreview(const wxMouseEvent &event)
static auto zoomOutCursor =
::MakeCursor(wxCURSOR_MAGNIFIER, ZoomOutCursorXpm, 19, 15);
return {
_("Click to verticaly zoom in, Shift-click to zoom out, Drag to create a particular zoom region."),
_("Click to vertically zoom in. Shift-click to zoom out. Drag to specify a zoom region."),
(event.ShiftDown() ? &*zoomOutCursor : &*zoomInCursor)
};
}