X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/ccf94c5dca76b164beeba398d4c493018a9b535b..e0a3b19e35aed6f3f8ba84e25381a5d0e6ca61f4:/SL/Layout/Classic.pm diff --git a/SL/Layout/Classic.pm b/SL/Layout/Classic.pm index 7575a1ac9..e8974c143 100644 --- a/SL/Layout/Classic.pm +++ b/SL/Layout/Classic.pm @@ -7,15 +7,18 @@ use SL::Layout::Top; use SL::Layout::MenuLeft; use SL::Layout::None; use SL::Layout::Split; +use SL::Layout::ActionBar; use SL::Layout::Content; sub init_sub_layouts { + $_[0]->sub_layouts_by_name->{actionbar} = SL::Layout::ActionBar->new; + [ SL::Layout::None->new, SL::Layout::Top->new, SL::Layout::Split->new( left => [ SL::Layout::MenuLeft->new ], - right => [ SL::Layout::Content->new ], + right => [ $_[0]->sub_layouts_by_name->{actionbar}, SL::Layout::Content->new ], ) ] }