X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44..53593baa211863fbf66540cf1bcc36c8fb37257f:/SL/Layout/Classic.pm diff --git a/SL/Layout/Classic.pm b/SL/Layout/Classic.pm index 94f12b3d6..e8974c143 100644 --- a/SL/Layout/Classic.pm +++ b/SL/Layout/Classic.pm @@ -6,12 +6,20 @@ use parent qw(SL::Layout::Base); 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::MenuLeft->new, + SL::Layout::Split->new( + left => [ SL::Layout::MenuLeft->new ], + right => [ $_[0]->sub_layouts_by_name->{actionbar}, SL::Layout::Content->new ], + ) ] }