Changeset 490
- Timestamp:
- 10/26/08 07:16:49 (3 years ago)
- Location:
- trunk/lib/Padre/Wx
- Files:
-
- 2 edited
-
MainWindow.pm (modified) (3 diffs)
-
Output.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/Padre/Wx/MainWindow.pm
r489 r490 215 215 216 216 my $output = $_[0]->{menu}->{view_output}->IsChecked; 217 # Firs we show the output window and then hide it if necessary217 # First we show the output window and then hide it if necessary 218 218 # in order to avoide some weird visual artifacts (empty square at 219 219 # top left part of the whole application) 220 220 # TODO maybe some users want to make sure the output window is always 221 221 # off at startup. 222 unless ( Padre::Util::WIN32 ) { 223 $_[0]->show_output(1); 224 } 222 $_[0]->show_output(1); 225 223 $_[0]->show_output($output) if not $output; 226 224 }, … … 1138 1136 my $on = shift; 1139 1137 1140 # return if Padre::Util::WIN32 and not $on;1141 1142 1138 my $config = Padre->ide->config; 1143 1139 $config->{main_output} = $on; … … 1151 1147 -100, 1152 1148 ); 1153 $self->{output}-> Thaw;1149 $self->{output}->Show; 1154 1150 } 1155 1151 if ( $self->{main_panel}->IsSplit and not $on ) { 1156 1152 $self->{main_panel}->Unsplit; 1157 $self-> Freeze;1153 $self->{output}->Hide; 1158 1154 } 1159 1155 return; -
trunk/lib/Padre/Wx/Output.pm
r484 r490 24 24 Wx::wxTE_READONLY | Wx::wxTE_MULTILINE | Wx::wxTE_DONTWRAP | Wx::wxNO_FULL_REPAINT_ON_RESIZE, 25 25 ); 26 $self->Freeze;27 26 28 27 # Do custom startup stuff here
Note: See TracChangeset
for help on using the changeset viewer.
