Ignore:
Timestamp:
12/08/09 19:49:20 (2 years ago)
Author:
adamk
Message:

Added the "File Intuition" feature (it's a fairly terrible name and looks weird where it is in the File menu, but we can fix that later).

Also removed a bunch of $DB::single = 1 usages.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre/lib/Padre/Wx/Menu/File.pm

    r9469 r9563  
    257257        menu_event  => sub { 
    258258            $_[0]->on_save_as; 
     259        }, 
     260    ); 
     261 
     262    $self->{save_as} = $self->add_menu_item( 
     263        $self, 
     264        name        => 'file.save_intuition', 
     265        id          => -1, 
     266        need_editor => 1, 
     267        label       => Wx::gettext('Save Intuition'), 
     268        shortcut    => 'Ctrl-Shift-S', 
     269        menu_event  => sub { 
     270            $_[0]->on_save_intuition; 
    259271        }, 
    260272    ); 
Note: See TracChangeset for help on using the changeset viewer.