From 68149a71978564aaef7a5fe956cf1de2864c16d3 Mon Sep 17 00:00:00 2001 From: Alexander Gavrilov Date: Thu, 13 Nov 2008 23:09:18 +0300 Subject: [PATCH] gitk: Avoid handling the Return key twice in Add Branch This reverts commit 63767d5fb8fe236d8fdeba44297ac925701b27a0. A similar change was made as part of commit 76f15947af7, that added bindings to all dialogs, and this duplication causes mkbrgo to be called twice, the second time after the window has been destroyed. As a result, an error window appears when the code tries to access widgets. Signed-off-by: Alexander Gavrilov Signed-off-by: Paul Mackerras --- gitk | 1 - 1 file changed, 1 deletion(-) diff --git a/gitk b/gitk index c3b4eb20b6..f7f177621c 100755 --- a/gitk +++ b/gitk @@ -8270,7 +8270,6 @@ proc mkbranch {} { grid $top.id $top.sha1 -sticky w label $top.nlab -text [mc "Name:"] entry $top.name -width 40 - bind $top.name "[list mkbrgo $top]" grid $top.nlab $top.name -sticky w frame $top.buts button $top.buts.go -text [mc "Create"] -command [list mkbrgo $top] -- 2.11.4.GIT