projects
/
catagits/Reaction.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
565a1fc
)
fixed default value
wreis [Thu, 30 Jul 2009 21:39:15 +0000 (21:39 +0000)]
lib/Reaction/UI/ViewPort/Role/Actions.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/Reaction/UI/ViewPort/Role/Actions.pm
b/lib/Reaction/UI/ViewPort/Role/Actions.pm
index
e78ba4d
..
368330b
100644
(file)
--- a/
lib/Reaction/UI/ViewPort/Role/Actions.pm
+++ b/
lib/Reaction/UI/ViewPort/Role/Actions.pm
@@
-20,7
+20,8
@@
has action_filter => (
isa => 'CodeRef', is => 'ro',
required => '1', lazy => '1',
default => sub {
- sub { return [keys %{ shift->action_prototypes }] }
+ my $self = shift;
+ sub { return [keys %{ $self->action_prototypes }] }
}
);