gitk: Fix errors in the theme patch
This fixes a typo in the commit selection combobox that prevented it from working properly, and sets the width of the widget. This also fixes show_error to handle errors arising before the gui is fully configured (ie: invalid command line parameters) Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net> Signed-off-by: Paul Mackerras <paulus@samba.org>maint
parent
d93f1713b0
commit
3cb1f9c982
10
gitk
10
gitk
|
@ -1798,6 +1798,7 @@ proc make_transient {window origin} {
|
||||||
|
|
||||||
proc show_error {w top msg} {
|
proc show_error {w top msg} {
|
||||||
global NS
|
global NS
|
||||||
|
if {![info exists NS]} {set NS ""}
|
||||||
if {[wm state $top] eq "withdrawn"} { wm deiconify $top }
|
if {[wm state $top] eq "withdrawn"} { wm deiconify $top }
|
||||||
message $w.m -text $msg -justify center -aspect 400
|
message $w.m -text $msg -justify center -aspect 400
|
||||||
pack $w.m -side top -fill x -padx 20 -pady 20
|
pack $w.m -side top -fill x -padx 20 -pady 20
|
||||||
|
@ -1920,7 +1921,12 @@ proc mca {str} {
|
||||||
proc makedroplist {w varname args} {
|
proc makedroplist {w varname args} {
|
||||||
global use_ttk
|
global use_ttk
|
||||||
if {$use_ttk} {
|
if {$use_ttk} {
|
||||||
set gm [ttk::combobox $w -width 10 -state readonly\
|
set width 0
|
||||||
|
foreach label $args {
|
||||||
|
set cx [string length $label]
|
||||||
|
if {$cx > $width} {set width $cx}
|
||||||
|
}
|
||||||
|
set gm [ttk::combobox $w -width $width -state readonly\
|
||||||
-textvariable $varname -values $args]
|
-textvariable $varname -values $args]
|
||||||
} else {
|
} else {
|
||||||
set gm [eval [linsert $args 0 tk_optionMenu $w $varname]]
|
set gm [eval [linsert $args 0 tk_optionMenu $w $varname]]
|
||||||
|
@ -2141,7 +2147,7 @@ proc makewindow {} {
|
||||||
pack .tf.lbar.flabel .tf.lbar.fnext .tf.lbar.fprev .tf.lbar.flab2 \
|
pack .tf.lbar.flabel .tf.lbar.fnext .tf.lbar.fprev .tf.lbar.flab2 \
|
||||||
-side left -fill y
|
-side left -fill y
|
||||||
set gdttype [mc "containing:"]
|
set gdttype [mc "containing:"]
|
||||||
set gm [makedroplist .tf.lbar.gdttype gdtype \
|
set gm [makedroplist .tf.lbar.gdttype gdttype \
|
||||||
[mc "containing:"] \
|
[mc "containing:"] \
|
||||||
[mc "touching paths:"] \
|
[mc "touching paths:"] \
|
||||||
[mc "adding/removing string:"]]
|
[mc "adding/removing string:"]]
|
||||||
|
|
Loading…
Reference in New Issue