git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] gitk: Fix size saving for diff and file list panes
@ 2006-03-05 17:09 Sergey Vlasov
  0 siblings, 0 replies; only message in thread
From: Sergey Vlasov @ 2006-03-05 17:09 UTC (permalink / raw)
  To: Paul Mackerras; +Cc: git

Signed-off-by: Sergey Vlasov <vsu@altlinux.ru>

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

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2006-03-05 17:09 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-03-05 17:09 [PATCH] gitk: Fix size saving for diff and file list panes Sergey Vlasov

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).