From: Paul Mackerras Date: Fri, 19 Aug 2005 00:22:24 +0000 (+1000) Subject: Save the maxwidth setting in the ~/.gitk file. X-Git-Tag: v0.99.5~9^2~1^2~2 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=04c13d38772c77997d8789ee2067cc351b66e2aa;p=git.git Save the maxwidth setting in the ~/.gitk file. --- diff --git a/gitk b/gitk index 0767695e..1c6b3822 100755 --- a/gitk +++ b/gitk @@ -528,6 +528,7 @@ proc click {w} { proc savestuff {w} { global canv canv2 canv3 ctext cflist mainfont textfont global stuffsaved findmergefiles gaudydiff maxgraphpct + global maxwidth if {$stuffsaved} return if {![winfo viewable .]} return @@ -538,6 +539,7 @@ proc savestuff {w} { puts $f [list set findmergefiles $findmergefiles] puts $f [list set gaudydiff $gaudydiff] puts $f [list set maxgraphpct $maxgraphpct] + puts $f [list set maxwidth $maxwidth] puts $f "set geometry(width) [winfo width .ctop]" puts $f "set geometry(height) [winfo height .ctop]" puts $f "set geometry(canv1) [expr [winfo width $canv]-2]"