Skip Menu |

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

Report information
The Basics
Id: 19659
Status: resolved
Worked: 1 min
Priority: 0/
Queue: Tk-Wizard-Bases

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

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



Subject: Cannot use 95 style
I have tried to add and remove '-style => "top"' option in Tk::Wizard, but it makes no difference, both will use Win2000 style. Here is a test code running with Tk::Wizard 1.943 under RHEL 4. Expected result: show Win 95 style Actual result: show Win 2000 style use Tk::Wizard; my $wizard = new Tk::Wizard( -title => "Test", ); $wizard->addPage( sub{ $wizard->blank_frame( );} ); $wizard->addPage( sub{ $wizard->blank_frame( );} ); $wizard->addPage( sub{ $wizard->blank_frame( );} ); $wizard->Show; MainLoop;
Subject: Cannot use 95 style - unless explicitly stated
Thanks for the bug report. In the version of Tk::Wizard on my system - which is an unreleased development version - I can use the 95 style by creating the Wizard with the -style=>'95' attribute. This is counter to the documentation, which stated that 95 was the default. Since 'top' has been the default style for years now, I have adjusted the docs to that effect. If you find that explicitly stating the style of 95 does not help, please get in touch again and I will attempt to organise a pre-release version to address the issue for you.