Ignore:
Timestamp:
02/07/10 10:46:27 (2 years ago)
Author:
azawawi
Message:

Added "Open with Default System Editor" in "File -> Open..." sub-menu. This is only implemented for Win32. Other platform implementations are welcome

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre/lib/Padre/Action/File.pm

    r10589 r10602  
    123123        menu_event => sub { 
    124124            $_[0]->on_open_url; 
     125        }, 
     126    ); 
     127 
     128    Padre::Action->new( 
     129        name       => 'file.open_with_default_system_editor', 
     130        label      => Wx::gettext('Open with Default System Editor'), 
     131        comment    => Wx::gettext('Opens the file with the default system editor'), 
     132        menu_event => sub { 
     133            $_[0]->on_open_with_default_system_editor; 
    125134        }, 
    126135    ); 
Note: See TracChangeset for help on using the changeset viewer.