git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] gitk: check main window visibility before waiting for it to show
@ 2021-01-09 23:26 Tobias Pietzsch via GitGitGadget
  2021-01-10 22:23 ` Beat Bolli
  0 siblings, 1 reply; 8+ messages in thread
From: Tobias Pietzsch via GitGitGadget @ 2021-01-09 23:26 UTC (permalink / raw)
  To: git; +Cc: Paul Mackerras, Tobias Pietzsch, Tobias Pietzsch

From: Tobias Pietzsch <pietzsch@mycroft.speedport.ip>

If the main window is already visible when gitk waits for it to
become visible, gitk hangs forever.
This commit adds a check whether the window is already visible.
See https://wiki.tcl-lang.org/page/tkwait+visibility

Signed-off-by: Tobias Pietzsch <pietzsch@mycroft.speedport.ip>
---
    gitk: check main window visibility before waiting for it to show
    
    If the main window is already visible when gitk waits for it to become
    visible, gitk hangs forever.
    
    This commit adds a check whether the window is already visible. See
    https://wiki.tcl-lang.org/page/tkwait+visibility
    
    The symptom of the for-ever waiting is that gitk shows just an empty
    window, like this: https://tinyurl.com/yxr5qlf6 It happens (to me) on
    macOS 11.1 with git-gui installed via homebrew. It doesn't happen on
    macOS 10.14.

Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-944%2Ftpietzsch%2Fmaster-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-944/tpietzsch/master-v1
Pull-Request: https://github.com/git/git/pull/944

 gitk-git/gitk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gitk-git/gitk b/gitk-git/gitk
index 23d9dd1fe0d..cd02b4d50fc 100755
--- a/gitk-git/gitk
+++ b/gitk-git/gitk
@@ -12658,7 +12658,7 @@ catch {
     wm iconphoto . -default gitlogo gitlogo32
 }
 # wait for the window to become visible
-tkwait visibility .
+if {![winfo viewable .]} {tkwait visibility .}
 set_window_title
 update
 readrefs

base-commit: 72c4083ddf91b489b7b7b812df67ee8842177d98
-- 
gitgitgadget

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2024-11-19 18:49 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-09 23:26 [PATCH] gitk: check main window visibility before waiting for it to show Tobias Pietzsch via GitGitGadget
2021-01-10 22:23 ` Beat Bolli
     [not found]   ` <ddee92a7-3d1e-f869-9cc4-72b70eee0dd5@gmx.de>
2024-11-13  7:47     ` The health of gitk, was " Johannes Schindelin
2024-11-14  7:19     ` Paul Mackerras
2024-11-14  8:07       ` Junio C Hamano
2024-11-17 15:26       ` Gitk maintainership, was Re: The health of gitk Johannes Sixt
2024-11-19  9:59         ` Paul Mackerras
2024-11-19 18:49           ` Johannes Sixt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).