[PATCH 2/2] Fix the geometry when restoring from zoomed state.
From: Pat Thoyts <hidden>
Date: 2016-06-15 22:47:24
Subsystem:
the rest · Maintainer:
Linus Torvalds
The patch to handle the geometry of a restored gitk by Alexy Borzenkov causes the position of the columns to creep each time the application is restarted. This patch addresses this by remembering the application geometry for the normal state and saving that regardless of the actual state when the application is closed. Signed-off-by: Pat Thoyts <redacted> --- gitk | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/gitk b/gitk
index a0214b7..67122c3 100755
--- a/gitk
+++ b/gitk@@ -2251,6 +2251,8 @@ proc makewindow {} { } wm geometry . "${w}x$h" } + } else { + set geometry(main) [wm geometry .] } if {[info exists geometry(state)] && $geometry(state) eq "zoomed"} {
@@ -2265,6 +2267,11 @@ proc makewindow {} { set ::BM "2" } + bind . <Configure> { + if {[winfo toplevel %W] eq "%W" && [wm state %W] eq "normal"} { + set ::geometry(main) %wx%h+%x+%y + } + } bind .pwbottom <Configure> {resizecdetpanes %W %w} pack .ctop -fill both -expand 1 bindall <1> {selcanvline %W %x %y}
@@ -2556,7 +2563,7 @@ proc savestuff {w} { puts $f [list set extdifftool $extdifftool] puts $f [list set perfile_attrs $perfile_attrs] - puts $f "set geometry(main) [wm geometry .]" + puts $f "set geometry(main) $::geometry(main)" puts $f "set geometry(state) [wm state .]" puts $f "set geometry(topwidth) [winfo width .tf]" puts $f "set geometry(topheight) [winfo height .tf]"
--
1.6.4.msysgit.0