Changeset 3308
- Timestamp:
- 03/12/09 14:29:39 (3 years ago)
- File:
-
- 1 edited
-
trunk/Padre/lib/Padre/Wx/Main.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Padre/lib/Padre/Wx/Main.pm
r3307 r3308 274 274 # the status bar which is ok, but then when we selected the menu to show it, it showed 275 275 # at the top) 276 # so now we always turn the status bar on at the beginning and hide it in the timer, if it was not needed 276 277 # TODO: there might be better ways to fix that issue... 278 $self->GetStatusBar->Show; 277 279 my $timer = Wx::Timer->new( $self, Padre::Wx::ID_TIMER_POSTINIT ); 278 280 Wx::Event::EVT_TIMER( … … 408 410 # represents the loaded state. 409 411 $self->load_files; 412 # canot use the toggle sub here as that one reads from the Menu and 413 # on some machines the Menu is not configured yet at this point. 410 414 if ( $self->config->main_statusbar ) { 411 415 $self->GetStatusBar->Show; 416 } else { 417 $self->GetStatusBar->Hide; 412 418 } 413 419 Padre->ide->plugin_manager->enable_editors_for_all;
Note: See TracChangeset
for help on using the changeset viewer.
