Changeset 10977


Ignore:
Timestamp:
03/03/10 06:59:14 (2 years ago)
Author:
bricas
Message:

Fixed ticket #835: Function list not populated on initial panel showing (karl.forner)

Location:
trunk/Padre
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre/Changes

    r10973 r10977  
    4040    - Fixed ticket #867: Padre dies when hitting Ctrl-. (AZAWAWI) 
    4141    - Fixed ticket #807: F2 is broken (AZAWAWI) 
     42    - Fixed ticket #835: Function list not populated on initial panel showing 
     43      (karl.forner) 
    4244 
    43450.57 2010.02.18 - **WARNING Contains new threading code** 
  • trunk/Padre/lib/Padre/Wx/Main.pm

    r10954 r10977  
    14441444# eliminated ? 
    14451445sub refresh_functions { 
    1446     my $self = shift; 
    1447     return unless $self->has_functions; 
    1448     return if $self->locked('REFRESH'); 
    1449     return unless $self->menu->view->{functions}->IsChecked; 
    1450     $self->functions->refresh(@_); 
    1451     return; 
     1446    my $self = shift; 
     1447    return unless $self->has_functions; 
     1448    return if $self->locked('REFRESH'); 
     1449    return unless $self->menu->view->{functions}->IsChecked; 
     1450    my @windows = @_; 
     1451    push @windows, $self->current unless @windows; 
     1452    $self->functions->refresh(@windows); 
     1453    return; 
    14521454} 
    14531455 
Note: See TracChangeset for help on using the changeset viewer.