X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/0466a6b348893b3e245713b9967e1f6dbff4c72f..f9c6711c22848fbc30edac1944e46bb21aba8c05:/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 ], ) ] }