Changeset 485


Ignore:
Timestamp:
10/26/08 06:21:41 (3 years ago)
Author:
szabgab
Message:

add some empty lines

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Padre/Wx/MainWindow.pm

    r483 r485  
    10961096    my ($self, $event) = @_; 
    10971097 
    1098     # Update the configuration 
    10991098    my $config = Padre->ide->config; 
    11001099    $config->{editor_linenumbers} = $event->IsChecked ? 1 : 0; 
    11011100 
    1102     # Update the notebook pages 
    11031101    foreach my $page ( $self->pages ) { 
    11041102        $self->_toggle_numbers( $page, $config->{editor_linenumbers} ); 
     
    11101108sub on_toggle_indentation_guide { 
    11111109    my $self   = shift; 
     1110 
    11121111    my $config = Padre->ide->config; 
    11131112    $config->{editor_indentationguides} = $self->{menu}->{view_indentation_guide}->IsChecked ? 1 : 0; 
     1113 
    11141114    foreach my $page ( $self->pages ) { 
    11151115        $page->SetIndentationGuides( $config->{editor_indentationguides} ); 
    11161116    } 
     1117 
    11171118    return; 
    11181119} 
     
    11201121sub on_toggle_eol { 
    11211122    my $self   = shift; 
     1123 
    11221124    my $config = Padre->ide->config; 
    11231125    $config->{editor_eol} = $self->{menu}->{view_eol}->IsChecked ? 1 : 0; 
     1126 
    11241127    foreach my $page ( $self->pages ) { 
    11251128        $page->SetViewEOL( $config->{editor_eol} ); 
    11261129    } 
     1130 
    11271131    return; 
    11281132} 
Note: See TracChangeset for help on using the changeset viewer.