sloppyhack
Technical User
#!/usr/bin/perl -w
use strict;
use Tk;
my $mw = MainWindow->new();
$mw->Label(-text => "TESTING", -background => 'white', -width => 50, -justify => 'left')->pack();
MainLoop;
This code should create a label with the text on the left side. Doesn't work. Puts it in the center. This must be a bug. Anyone know anything about it?
Cheers,
Sloppyhack
use strict;
use Tk;
my $mw = MainWindow->new();
$mw->Label(-text => "TESTING", -background => 'white', -width => 50, -justify => 'left')->pack();
MainLoop;
This code should create a label with the text on the left side. Doesn't work. Puts it in the center. This must be a bug. Anyone know anything about it?
Cheers,
Sloppyhack