diff options
author | Angelo Naselli <anaselli@linux.it> | 2014-12-27 00:02:13 +0100 |
---|---|---|
committer | Angelo Naselli <anaselli@linux.it> | 2014-12-27 00:02:13 +0100 |
commit | 3a77a6871c78f3f955e22d0848f17c780ffe2ea3 (patch) | |
tree | 2b4dc2cb15f3fb14bbf47ba03368edc81158f853 /lib/AdminPanel | |
parent | 4ec4fa9c5c040fc23d66dc47e1f33b03a2124895 (diff) | |
download | colin-keep-3a77a6871c78f3f955e22d0848f17c780ffe2ea3.tar colin-keep-3a77a6871c78f3f955e22d0848f17c780ffe2ea3.tar.gz colin-keep-3a77a6871c78f3f955e22d0848f17c780ffe2ea3.tar.bz2 colin-keep-3a77a6871c78f3f955e22d0848f17c780ffe2ea3.tar.xz colin-keep-3a77a6871c78f3f955e22d0848f17c780ffe2ea3.zip |
added heading
Diffstat (limited to 'lib/AdminPanel')
-rw-r--r-- | lib/AdminPanel/Module/Services.pm | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/AdminPanel/Module/Services.pm b/lib/AdminPanel/Module/Services.pm index 51a8d6b..451d35c 100644 --- a/lib/AdminPanel/Module/Services.pm +++ b/lib/AdminPanel/Module/Services.pm @@ -384,7 +384,16 @@ sub _servicePanel { my $dialog = $factory->createMainDialog; my $vbox = $factory->createVBox( $dialog ); - my $frame = $factory->createFrame ($vbox, $self->loc->N("Services")); + + #Line for logo and title + my $hbox_iconbar = $factory->createHBox($vbox); + my $head_align_left = $factory->createLeft($hbox_iconbar); + $hbox_iconbar = $factory->createHBox($head_align_left); + $factory->createImage($hbox_iconbar, $self->icon); + + $factory->createHeading($hbox_iconbar, $self->loc->N("Manage system services by enabling or disabling them")); + + my $frame = $factory->createFrame ($vbox, ""); my $frmVbox = $factory->createVBox( $frame ); my $hbox = $factory->createHBox( $frmVbox ); |