Changeset 300
- Timestamp:
- 01/07/08 02:17:42 (8 months ago)
- Files:
-
- trunk/THANKS (modified) (1 diff)
- trunk/src/gtk/PageView.cxx (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/THANKS
r299 r300 7 7 - Fábio Antunes <fabio.antunes@hotmail.com>, for his Brazilian Portuguese translation. 8 8 - Fabio Vergnani <monghitri@aruba.it>, for his Italion translation. 9 - Ihar Hrachyshka <ihar.hrachyshka@gmail.com>, for his vim keybindings patch. 9 10 - Igor Vagulin <igor_vagulin@mail.ru>, for his Russian translation and patches. 10 11 - Lester Godwin <lgodwin@pushcorp.com>, for his patches. trunk/src/gtk/PageView.cxx
r289 r300 573 573 case GDK_Left: 574 574 case GDK_KP_Left: 575 case GDK_h: 575 576 direction = GTK_SCROLL_STEP_LEFT; 576 577 horizontal = TRUE; … … 579 580 case GDK_Right: 580 581 case GDK_KP_Right: 582 case GDK_l: 581 583 horizontal = TRUE; 582 584 direction = GTK_SCROLL_STEP_RIGHT; … … 585 587 case GDK_Up: 586 588 case GDK_KP_Up: 589 case GDK_k: 590 if ( position == adjustment->lower ) 591 { 592 pter->scrollToPreviousPage (); 593 return TRUE; 594 } 587 595 direction = GTK_SCROLL_STEP_UP; 588 596 break; … … 590 598 case GDK_Down: 591 599 case GDK_KP_Down: 600 case GDK_j: 601 if ( position == ( adjustment->upper - adjustment->page_size) ) 602 { 603 pter->scrollToNextPage (); 604 return TRUE; 605 } 592 606 direction = GTK_SCROLL_STEP_DOWN; 593 607 break;
