Changeset 2291


Ignore:
Timestamp:
12/30/08 17:01:21 (3 years ago)
Author:
fayland
Message:

bug fix: delete out-things in Experimental.pm

Location:
trunk/Padre/lib/Padre/Wx/Menu
Files:
2 edited

Legend:

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

    r2277 r2291  
    8888    ); 
    8989 
    90     # Simple QuickFind check update 
    91     $self->{quick_find}->Check( $config->{is_quick_find} ? 1 : 0 ); 
    92  
    93     # Check update and enable/disable the PPI lexer hook 
    94     $self->{ppi_highlight}->Check( $config->{ppi_highlight} ? 1 : 0 ); 
    95     $Padre::Document::MIME_LEXER{'application/x-perl'} =  
    96         $config->{ppi_highlight} 
    97             ? Wx::wxSTC_LEX_CONTAINER 
    98             : Wx::wxSTC_LEX_PERL; 
    99  
    10090    return; 
    10191} 
  • trunk/Padre/lib/Padre/Wx/Menu/Perl.pm

    r2279 r2291  
    110110 
    111111    $self->{ppi_highlight}->Check( $config->{ppi_highlight} ? 1 : 0 ); 
     112    $Padre::Document::MIME_LEXER{'application/x-perl'} =  
     113        $config->{ppi_highlight} 
     114            ? Wx::wxSTC_LEX_CONTAINER 
     115            : Wx::wxSTC_LEX_PERL; 
    112116} 
    113117 
Note: See TracChangeset for help on using the changeset viewer.