diff options
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/draksplash | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/perl-install/standalone/draksplash b/perl-install/standalone/draksplash index f51005b86..7535c3df2 100755 --- a/perl-install/standalone/draksplash +++ b/perl-install/standalone/draksplash @@ -61,7 +61,12 @@ $notebook->append_page(gtknew('VBox', spacing => 5, children_tight => [ gtknew('Button', text => N("Choose progress bar color 1"), clicked => sub { choose_color('pc1') }), gtknew('Button', text => N("Choose progress bar color 2"), clicked => sub { choose_color('pc2') }), gtknew('Button', text => N("Choose progress bar background"), clicked => sub { choose_color('pbg_c') }), - gtknew('Label', text => N("Gradient type")), gtksignal_connect(Gtk2::ComboBox->new_with_strings([ 'vertical', 'horizontal' ], 'vertical'), changed => sub { $theme{conf}{gradient} = $_[0]->get_child->get_text }), + gtknew('HButtonBox', layout => 'edge', children_tight => [ + gtknew('Label', text => N("Gradient type")), + gtksignal_connect( + Gtk2::ComboBox->new_with_strings([ 'vertical', 'horizontal' ], 'vertical'), + changed => sub { $theme{conf}{gradient} = $_[0]->get_child->get_text }), + ]), gtknew('Button', text => N("Choose text color"), clicked => sub { choose_color('text_color') }), create_scale_table('text_x', 'text_y', 'text_size'), gtknew('Button', text => N("Choose picture"), clicked => sub { choose_image('silentjpeg') })]), |