home *** CD-ROM | disk | FTP | other *** search
/ Practical Programming in Tcl & Tk (4th Edition) / TCLBOOK4.BIN / pc / exsource.old / 24_2.tcl < prev    next >
Text File  |  2003-04-15  |  192b  |  12 lines

  1. #
  2. # Example 24-2
  3. # Turning off geometry propagation.
  4. #
  5.  
  6. frame .one -width 40 -height 40 -bg white
  7. frame .two -width 100 -height 50 -bg grey50
  8. pack propagate . false
  9. pack .one .two -side top
  10.  
  11.  
  12.