diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/auto/Tk/Frame/queuePack.al')
-rwxr-xr-x | Master/tlpkg/tlperl/lib/auto/Tk/Frame/queuePack.al | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Master/tlpkg/tlperl/lib/auto/Tk/Frame/queuePack.al b/Master/tlpkg/tlperl/lib/auto/Tk/Frame/queuePack.al new file mode 100755 index 00000000000..59fe3ee4de0 --- /dev/null +++ b/Master/tlpkg/tlperl/lib/auto/Tk/Frame/queuePack.al @@ -0,0 +1,18 @@ +# NOTE: Derived from blib\lib\Tk\Frame.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Tk::Frame; + +#line 198 "blib\lib\Tk\Frame.pm (autosplit into blib\lib\auto\Tk\Frame\queuePack.al)" +sub queuePack +{ + my ($cw) = @_; + unless ($cw->{'pack_pending'}) + { + $cw->{'pack_pending'} = 1; + $cw->afterIdle([$cw,'packscrollbars']); + } +} + +# end of Tk::Frame::queuePack +1; |