home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / Share / Editores / Perl5 / perl / lib / site / auto / Tk / Scale / Leave.al < prev    next >
Encoding:
Text File  |  1997-08-10  |  291 b   |  12 lines

  1. # NOTE: Derived from ..\blib\lib\Tk\Scale.pm.  Changes made here will be lost.
  2. package Tk::Scale;
  3.  
  4. sub Leave
  5. {
  6.  my ($w) = @_;
  7.  $w->configure("-activebackground",$w->{'activeBg'}) if ($Tk::strictMotif);
  8.  $w->configure("-state","normal")  if ($w->cget("-state") eq "active");
  9. }
  10.  
  11. 1;
  12.