1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-12 23:55:50 +01: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)
};
}