Prima radio buttons don't paint properly in "classic" skin.
use Prima qw(Application Buttons);
my $main = Prima::MainWindow->new(
size => [ 250, 100]
);
$main->insert(Radio =>
skin => 'flat',
text => 'Flat',
checked => 1,
pack => { anchor => 'w' }
);
$main->insert(Radio =>
skin => 'classic',
text => 'Classic',
checked => 1,
pack => { anchor => 'w' }
);
$main->insert(Radio =>
skin => 'classic',
text => (' ' x 7) . 'Classic',
checked => 1,
pack => { anchor => 'w' }
);
Prima->run;
Prepending widget text with spaces acts as a workaround...
Prima radio buttons don't paint properly in "classic" skin.
looks like:
Prepending widget text with spaces acts as a workaround...
Test configuration: