summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-10-29 12:09:09 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-10-29 12:09:09 +0200
commit0e00371868a2e11f1a827f914e431d24ff9d74c9 (patch)
tree7730f91111b37a7564c495f9b268e628b3f84649 /lib
parent7eda6144f679c503a30563157c9bb22f53704828 (diff)
Fix minutes, support any color
Diffstat (limited to 'lib')
-rw-r--r--lib/App/VRR/Fakedisplay.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/App/VRR/Fakedisplay.pm b/lib/App/VRR/Fakedisplay.pm
index 782f7ca..b380382 100644
--- a/lib/App/VRR/Fakedisplay.pm
+++ b/lib/App/VRR/Fakedisplay.pm
@@ -26,7 +26,7 @@ sub new {
$self->{image} = GD::Image->new($self->{width} * $self->{scale}, $self->{height} * $self->{scale});
$self->{color}->{bg} = $self->{image}->colorAllocate(0, 0, 0);
- $self->{color}->{fg} = $self->{image}->colorAllocate(255, 0, 0);
+ $self->{color}->{fg} = $self->{image}->colorAllocate(@{$opt{color} // [255, 0, 0]});
$self->{image}->filledRectangle(0, 0, ($self->{width} * $self->{scale}) -1,
($self->{height} * $self->{scale}) - 1, $self->{color}->{bg});