in reply to Perl Tk Gang together two Scrolled Panes
Ganged scrolling problem.
$horiz->configure(-command => sub { $dataFrame->xview(@_); $dataFrame->xview(@_) });
should be
$horiz->configure(-command => sub { $headFrame->xview(@_); $dataFrame->xview(@_) });
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl Tk Gang together two Scrolled Panes
by ashervin (Novice) on Nov 29, 2018 at 17:10 UTC | |
by tybalt89 (Monsignor) on Nov 29, 2018 at 17:37 UTC |