Signed-off-by: Sergey Vlasov <redacted>
The splitter between diff and file list panes was moving to the left
after every restart of gitk.
---
This patch applies both to the stable and new gitk versions.
gitk | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
1e43530dc79f176507e5ad2fd57f4c9ba6cea46a
diff --git a/gitk b/gitk
index f4c6624..a5331f1 100755
--- a/gitk
+++ b/gitk
@@ -676,10 +676,10 @@ proc savestuff {w} {
puts $f "set geometry(canv2) [expr {[winfo width $canv2]-2}]"
puts $f "set geometry(canv3) [expr {[winfo width $canv3]-2}]"
puts $f "set geometry(canvh) [expr {[winfo height $canv]-2}]"
- set wid [expr {([winfo width $ctext] - 8) \
+ set wid [expr {([winfo width $ctext]) \
/ [font measure $textfont "0"]}]
puts $f "set geometry(ctextw) $wid"
- set wid [expr {([winfo width $cflist] - 11) \
+ set wid [expr {([winfo width $cflist]) \
/ [font measure [$cflist cget -font] "0"]}]
puts $f "set geometry(cflistw) $wid"
close $f--
1.2.GIT