diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2007-09-16 23:15:21 -0400 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-09-16 23:15:21 -0400 |
commit | 704396bc2a13f8843689d3fab2211a0b2f364652 (patch) | |
tree | 809b6b31f30daaf27fd1080d0819a0fd0dd5c1d1 /lib/browser.tcl | |
parent | git-gui: Paper bag fix missing translated strings (diff) | |
parent | git-gui: Disable native platform text selection in "lists" (diff) | |
download | tgif-704396bc2a13f8843689d3fab2211a0b2f364652.tar.xz |
Merge branch 'maint'
* maint:
git-gui: Disable native platform text selection in "lists"
Conflicts:
lib/browser.tcl
Diffstat (limited to 'lib/browser.tcl')
-rw-r--r-- | lib/browser.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/browser.tcl b/lib/browser.tcl index 3ba5c3a1fa..53d5a62816 100644 --- a/lib/browser.tcl +++ b/lib/browser.tcl @@ -47,7 +47,7 @@ constructor new {commit {path {}}} { -width 70 \ -xscrollcommand [list $w.list.sbx set] \ -yscrollcommand [list $w.list.sby set] - $w_list tag conf in_sel -background lightgray + rmsel_tag $w_list scrollbar $w.list.sbx -orient h -command [list $w_list xview] scrollbar $w.list.sby -orient v -command [list $w_list yview] pack $w.list.sbx -side bottom -fill x |