Fix invocation of interpreter menu so things work with Tk 4.0b3.
authorsls <sls>
Fri, 2 Jun 1995 04:24:20 +0000 (04:24 +0000)
committersls <sls>
Fri, 2 Jun 1995 04:24:20 +0000 (04:24 +0000)
tkinspect.tcl

index 4b2ecf5802dd0b8de1e574b14579f992fdbf9831..214e7e6f8b8bed22997efc49172f50f859629dd1 100644 (file)
@@ -60,7 +60,7 @@ dialog tkinspect_main {
        pack $self.menu.file -side left
        set m [menu $self.menu.file.m]
        $m add cascade -label "Select Interpreter" -underline 0 \
-           -menu $self.menu.file.m.interps -command "$self fill_interp_menu"
+           -menu $self.menu.file.m.interps
        $m add command -label "New Window" -underline 0 \
            -command tkinspect_create_main_window
        $m add command -label "Update Lists" -underline 0 \
@@ -69,7 +69,8 @@ dialog tkinspect_main {
        $m add command -label "Close Window" -underline 0 \
            -command "$self close"
        $m add command -label "Exit" -underline 0 -command tkinspect_exit
-       menu $self.menu.file.m.interps -tearoff 0
+       menu $self.menu.file.m.interps -tearoff 0 \
+           -postcommand "$self fill_interp_menu"
        menubutton $self.menu.options -menu $self.menu.options.m \
            -text "Options" -underline 0
        pack $self.menu.options -side left