Remove tk 4.0b2 focus work-arounds.
authorsls <sls>
Fri, 2 Jun 1995 06:48:24 +0000 (06:48 +0000)
committersls <sls>
Fri, 2 Jun 1995 06:48:24 +0000 (06:48 +0000)
install.tcl

index f3bcefffe93f2bfd658d752bd3222e5b6a8652b1..cd02dbb1db2f84391b3cf66971dc8073dab10b75 100644 (file)
@@ -30,7 +30,6 @@ widget install_path {
        label $self.l
        pack $self.e -side right
        pack $self.l -side left
-       bind $self <FocusIn> { if {"%d" != "NotifyPointer"} { focus %W.e } }
     }
     method reconfig {} {
        $self.l config -text $slot(label)
@@ -76,13 +75,11 @@ label .title2 -text "Release $tkinspect(release) ($tkinspect(release_date))" \
     -font -*-helvetica-medium-r-*-*-12-*
 pack .title .title2 -side top
 
-text .instructions -relief ridge -bd 4 -width 20 -height 3 -wrap word
+text .instructions -relief ridge -bd 4 -width 20 -height 3 -wrap word \
+    -takefocus 0
 .instructions insert 1.0 \
 {Fill out the pathnames below and press the install button.  Any errors will appear in log window below.
 }
-bind .instructions <FocusIn> {
-    if {"%d" != "NotifyPointer"} { tk_focusContinue %W }
-}
 pack .instructions -side top -fill both -expand 1
 set prefix /usr/local
 install_dir .prefix -label Prefix: -variable prefix
@@ -94,11 +91,8 @@ set wish /usr/local/bin/wish
 install_exec .wish -label "Wish executable:" -variable wish
 pack .prefix .bindir .libdir .wish -side top -fill x
 
-text .log -width 70 -height 10 -bd 4 -relief ridge
+text .log -width 70 -height 10 -bd 4 -relief ridge -takefocus 0
 pack .log -side top -fill both -expand 1
-bind .log <FocusIn> {
-    if {"%d" != "NotifyPointer"} { tk_focusContinue %W }
-}
 
 frame .buttons
 pack .buttons -side top