From cc80bc093264e0a3fb982229565193faddcd39df Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Thu, 4 Aug 2005 06:20:21 +0000 Subject: make sure hex colors are 6 chars long --- perl-install/standalone/draksplash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'perl-install/standalone') diff --git a/perl-install/standalone/draksplash b/perl-install/standalone/draksplash index a84756e7c..558f6bfd1 100755 --- a/perl-install/standalone/draksplash +++ b/perl-install/standalone/draksplash @@ -173,12 +173,12 @@ sub choose_image { sub choose_color() { my $color = gtkshow(Gtk2::ColorSelectionDialog->new(N("ProgressBar color selection"))); - my @rgb = $theme{conf}{pc} =~ m/#(.{2})(.{2})(.{2})/ && map { hex($_)/255 } ($1, $2, $3); + my @rgb = $theme{conf}{pc} =~ /^#(.{2})(.{2})(.{2})$/ ? (map { hex($_)*255 } ($1, $2, $3)) : (); $color->colorsel->set_current_color(gtkcolor(@rgb)); $color->cancel_button->signal_connect(clicked => sub { $color->destroy }); $color->ok_button->signal_connect(clicked => sub { my $colour = $color->colorsel->get_current_color; - $theme{conf}{pc} = "#" . join('', map { sprintf("%x", $_/255) } $colour->red, $colour->green, $colour->blue); + $theme{conf}{pc} = "#" . join('', map { sprintf("%02x", $_/255) } $colour->red, $colour->green, $colour->blue); $color->destroy; }); } -- cgit v1.2.1