Changeset 473


Ignore:
Timestamp:
10/26/08 02:35:46 (3 years ago)
Author:
szabgab
Message:

don't hide output window on windows as it is currently broken

File:
1 edited

Legend:

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

    r472 r473  
    221221            # TODO maybe some users want to make sure the output window is always 
    222222            # off at startup. 
    223             $_[0]->show_output(1); 
     223            unless ( Padre::Util::WIN32 ) { 
     224                $_[0]->show_output(1); 
     225            } 
    224226            $_[0]->show_output($output) if not $output; 
    225227            }, 
     
    11271129sub show_output { 
    11281130    my $self = shift; 
     1131 
    11291132    my $on   = @_ ? $_[0] ? 1 : 0 : $self->{menu}->{view_output}->IsChecked; 
     1133    return if Padre::Util::WIN32 and not $on; 
     1134 
    11301135    my $config = Padre->ide->config; 
    11311136    $config->{main_output} = $on; 
Note: See TracChangeset for help on using the changeset viewer.