Skip Menu |

This queue is for tickets about the Tk-Wizard-Bases CPAN distribution.

Report information
The Basics
Id: 19339
Status: resolved
Priority: 0/
Queue: Tk-Wizard-Bases

People
Owner: LGODDARD [...] cpan.org
Requestors:
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: (no value)



The "-height" and "-width" flags only work in the first blank_frame, but not in subsequent blank_frame. I have also try to use "-height" and "-width" flags in wizard, but no effect. I test the following program under Tk-Wizard-Bases-1.943, perl 5.8.5-16, RHEL4. Expected result: 1st page has dimension 400x800, 2nd page has 300x400. Real result: All pages has dimension 400x800. use Tk::Wizard::Installer; my $wizard = new Tk::Wizard( -title => "Test", -style => 'top', ); $wizard->addPage( sub{ $wizard->blank_frame( -height => 400, -width => 800, );} ); $wizard->addPage( sub{ $wizard->blank_frame( -height => 300, -width => 400, );} ); $wizard->addPage( sub{ $wizard->blank_frame( );} ); $wizard->Show; MainLoop;
From: lgoddard [...] cpan.org
This issue has been resolved, I think. Please check v 1.945 and let me know if you have any problems. Thanks Lee