Changeset 10977
- Timestamp:
- 03/03/10 06:59:14 (2 years ago)
- Location:
- trunk/Padre
- Files:
-
- 2 edited
-
Changes (modified) (1 diff)
-
lib/Padre/Wx/Main.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Padre/Changes
r10973 r10977 40 40 - Fixed ticket #867: Padre dies when hitting Ctrl-. (AZAWAWI) 41 41 - Fixed ticket #807: F2 is broken (AZAWAWI) 42 - Fixed ticket #835: Function list not populated on initial panel showing 43 (karl.forner) 42 44 43 45 0.57 2010.02.18 - **WARNING Contains new threading code** -
trunk/Padre/lib/Padre/Wx/Main.pm
r10954 r10977 1444 1444 # eliminated ? 1445 1445 sub 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; 1452 1454 } 1453 1455
Note: See TracChangeset
for help on using the changeset viewer.
