Subject: | Unable to set background fill color |
Date: | Wed, 16 Apr 2008 12:27:11 -0400 |
To: | bug-Curses-UI [...] rt.cpan.org |
From: | "David Kil" <dave [...] thekilempire.com> |
I'm trying to create a dialog with red background. Presumably, I'd
simply need to specify -bg => 'red' while creating the dialog. When I
do this however, I get a black dialog that only has a red background
where text exists.
Example:
my $return = $ui->dialog(
-title => "Are you sure?",
-message => "Do you really want to quit?",
-buttons => [ 'yes', 'no' ],
-fg => 'white', -bg => 'red',
-tfg => 'red', -tbg => 'yellow',
-bfg => 'yellow', -bbg => 'red',
);
I don't know if this is by design so I'm filling out a bug report.