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:
parent
e681439000
commit
fb2bc65168
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user