1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-08 16:11:14 +02:00

Exchange the effects of page up and page down keys.

This commit is contained in:
Paul Licameli 2016-04-21 12:40:11 -04:00
parent e681439000
commit fb2bc65168

View File

@ -1229,12 +1229,12 @@ void TrackPanel::HandleControlKey(bool down)
void TrackPanel::HandlePageUpKey()
{
mListener->TP_ScrollWindow(GetScreenEndTime());
mListener->TP_ScrollWindow(2 * mViewInfo->h - GetScreenEndTime());
}
void TrackPanel::HandlePageDownKey()
{
mListener->TP_ScrollWindow(2 * mViewInfo->h - GetScreenEndTime());
mListener->TP_ScrollWindow(GetScreenEndTime());
}
void TrackPanel::HandleCursorForLastMouseEvent()