Changeset 11104


Ignore:
Timestamp:
03/13/10 07:21:22 (2 years ago)
Author:
Sewi
Message:

Add two actions

File:
1 edited

Legend:

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

    r10997 r11104  
    5151    ); 
    5252 
     53    # Delay the action queue 
     54    Padre::Action->new( 
     55        name       => 'internal.wait10', 
     56        label      => Wx::gettext('Delay the action queue for 10 seconds'), 
     57        comment    => Wx::gettext('Stops processing of other action queue items for 10 seconds'), 
     58        menu_event => sub { 
     59            sleep 10; 
     60        }, 
     61    ); 
     62    Padre::Action->new( 
     63        name       => 'internal.wait30', 
     64        label      => Wx::gettext('Delay the action queue for 30 seconds'), 
     65        comment    => Wx::gettext('Stops processing of other action queue items for 30 seconds'), 
     66        menu_event => sub { 
     67            sleep 30; 
     68        }, 
     69    ); 
     70 
    5371    return $self; 
    5472} 
Note: See TracChangeset for help on using the changeset viewer.