From e4df519f05ab20eae235968166a17a5a196bc377 Mon Sep 17 00:00:00 2001 From: Johannes Sixt Date: Thu, 18 Dec 2008 08:30:49 +0100 Subject: [PATCH] gitk: Force the focus to the main window on Windows On msysGit, the focus is first on the (Tk) console. This console is then hidden, but keeps the focus. Work around that by forcing the focus onto the gitk window. This fixes msysGit issue 14. Diagnosed and originally fixed by Johannes Schindelin. Signed-off-by: Johannes Sixt Signed-off-by: Paul Mackerras --- gitk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gitk b/gitk index d72196911c..dc2a439618 100755 --- a/gitk +++ b/gitk @@ -10914,4 +10914,9 @@ if {[info exists permviews]} { addviewmenu $n } } + +if {[tk windowingsystem] eq "win32"} { + focus -force . +} + getcommits {} -- 2.11.4.GIT