Skip to content

Tkx::ttk__style_map doesn't work #3

Open
@MaxPerl

Description

Hello Mr. Aas,
Thank you very much for your wonderful Tkx module.

Unfortunately Tkx::ttk__style_map doesn't work for me. Enclosed a simple example:


use utf8;
use Tkx;

Tkx::ttk__style_map('TButton -background [list disabled red]');

my $mw = Tkx::widget->new('.');

my $b = $mw->new_ttk__button(	-text	=> 'Hello',
			-command => sub {$mw->g_destroy},
			-state => disabled,
		); 
$b->g_pack();

Tkx::MainLoop();

Pure Tcl with the following commands works just fine:
ttk::style map TButton -background [list disabled red]
ttk::button .b -text "Hello" -state "disabled"
pack .b

Thanks for your help,
Max

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions