in reply to Tk::Pane widget size limit?

I can confirm the behaviour. You can add
$mw->after(100, sub { $pane->xview(moveto => 1) });
before the MainLoop so that the pane already starts scrolled right.

Or maybe

my $step = .05; my $i = 1; $mw->repeat(100, sub { $pane->xview(moveto => ++$i * $step) });

to see how the scrolling happens.

map{substr$_->[0],$_->[1]||0,1}[\*||{},3],[[]],[ref qr-1,-,-1],[{}],[sub{}^*ARGV,3]

Replies are listed 'Best First'.
Re^2: Tk::Pane widget size limit?
by jbuck (Novice) on Aug 23, 2021 at 23:18 UTC
    Thanks but that does not answer my question or solve the problem. Is there a limitation somewhere in here? If so, is it with Tk::Pane or Tk::Scrolled? Is there a way to fix this so all widgets are always displayed correctly no matter the size or quantity?