Changeset 12381


Ignore:
Timestamp:
08/27/10 04:05:23 (18 months ago)
Author:
zenogantner
Message:

external consistency: tab switching similar to Google Chrome, Firefox, etc.

Location:
trunk/Padre
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre/Changes

    r12348 r12381  
    1111      Functions view (DAPATRICK) 
    1212    - Updated German translation (ZENOG) 
     13    - Use Ctrl-PageUp/PageDown for cycling between documents - like in 
     14      Firefox and Google Chrome (ZENOG) 
    1315 
    14160.69 2010.08.17 
  • trunk/Padre/lib/Padre/Wx/Action.pm

    r12251 r12381  
    216216      comment    => 'Saves the current file to disk', 
    217217      icon       => '...', 
    218       shortcut   => 'CTRL-S', 
     218      shortcut   => 'Ctrl-S', 
    219219      menu_event => sub { }, 
    220220  ); 
  • trunk/Padre/lib/Padre/Wx/ActionLibrary.pm

    r12259 r12381  
    23542354        label       => _T('Next File'), 
    23552355        comment     => _T('Put focus on the next tab to the right'), 
    2356         shortcut    => 'Alt-Right', 
     2356        shortcut    => 'Ctrl-PageUp', 
    23572357        need_editor => 1, 
    23582358        menu_event  => sub { 
     
    23652365        label       => _T('Previous File'), 
    23662366        comment     => _T('Put focus on the previous tab to the left'), 
    2367         shortcut    => 'Alt-Left', 
     2367        shortcut    => 'Ctrl-PageDown', 
    23682368        need_editor => 1, 
    23692369        menu_event  => sub { 
Note: See TracChangeset for help on using the changeset viewer.