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 <j6t@kdbg.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
Johannes Sixt 2008-12-18 08:30:49 +01:00 committed by Paul Mackerras
parent 61f57cb07d
commit e4df519f05

5
gitk
View file

@ -10914,4 +10914,9 @@ if {[info exists permviews]} {
addviewmenu $n
}
}
if {[tk windowingsystem] eq "win32"} {
focus -force .
}
getcommits {}