Thread UI::Dialog $-Bug!?
(4 answers)
Opened by Mikado at 2015-11-23 07:05
first: Ich habe mich jetzt eingeloggt! Aka Mikado ;-)
Zenity oder GDialog müsste das Backend sein – GNOME/GTK. Auf dem Terminal funktioniert es hier auch korrekt. Mit dem Beispielcode tritt der Bug schon auf: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 use UI::Dialog; my $d = new UI::Dialog( backtitle => 'Demo', title => 'Default', ); my @selection1 = $d->checklist( text => 'Select one:', list => [ 'tag1', [ 'item1', 0 ], 'tag2', [ 'item2', 1 ], 'tag3', [ 'item3', 1 ] ] ); foreach my $sel (@selection1) { printf( "%s\n", $sel ); } Code: (dl
)
1 $ perl ~/ex.pl Last edited: 2015-11-23 09:55:50 +0100 (CET) |