blob: 9584a7fa34c74e8908873e9e790a8dd93037a70f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# NOTE: Derived from ..\blib\lib\Tk\Scrollbar.pm.
# Changes made here will be lost when autosplit is run again.
# See AutoSplit.pm.
package Tk::Scrollbar;
#line 86 "..\blib\lib\Tk\Scrollbar.pm (autosplit into ..\blib\lib\auto\Tk\Scrollbar\Enter.al)"
sub Enter
{
my $w = shift;
my $e = $w->XEvent;
if ($Tk::strictMotif)
{
my $bg = $w->cget('-background');
$activeBg = $w->cget('-activebackground');
$w->configure('-activebackground' => $bg);
}
$w->activate($w->identify($e->x,$e->y));
}
# end of Tk::Scrollbar::Enter
1;
|