Subject: | CDialog menus not showing |
Date: | Thu, 28 Jan 2016 15:56:37 +1100 |
To: | bug-UI-Dialog [...] rt.cpan.org |
From: | Rob Newton <robn [...] mirrabooka.com> |
Hi,
CDialog menus are not showing anything in version 1.12. The call to $d->menu() just returns immediately without showing anything. They work fine with version 1.09.
Both were using the same version of 'dialog', 1.2-20130523 .
Both were tested on redhat enterprise linux 7.2 .
use UI::Dialog::Backend::CDialog;
my $d = new UI::Dialog::Backend::CDialog ( backtitle => 'Demo',
title => 'Default' );
# DOES NOT SHOW ANYTHING
my $selection1 = $d->menu( text => 'Select one:',
list => [ 'tag1', 'item1',
'tag2', 'item2',
'tag3', 'item3' ]
);
# THIS msgbox WORKS
$d->msgbox( title => 'Welcome!', text => 'Welcome one and all!' );
Cheers,
Rob
CDialog menus are not showing anything in version 1.12. The call to $d->menu() just returns immediately without showing anything. They work fine with version 1.09.
Both were using the same version of 'dialog', 1.2-20130523 .
Both were tested on redhat enterprise linux 7.2 .
use UI::Dialog::Backend::CDialog;
my $d = new UI::Dialog::Backend::CDialog ( backtitle => 'Demo',
title => 'Default' );
# DOES NOT SHOW ANYTHING
my $selection1 = $d->menu( text => 'Select one:',
list => [ 'tag1', 'item1',
'tag2', 'item2',
'tag3', 'item3' ]
);
# THIS msgbox WORKS
$d->msgbox( title => 'Welcome!', text => 'Welcome one and all!' );
Cheers,
Rob