Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fixed bug where copy button in directory diff picked the wrong file. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
861a21437b6228fbb6437cce9d356349 |
User & Date: | peter 2011-11-01 21:05:14.322 |
Context
2011-11-01
| ||
21:06 | Added run target and improved debug resource. check-in: 93e11f9679 user: peter tags: trunk | |
21:05 | Fixed bug where copy button in directory diff picked the wrong file. check-in: 861a21437b user: peter tags: trunk | |
2011-10-30
| ||
21:31 | Updated features and screenshots check-in: 2a5459b44e user: peter tags: trunk | |
Changes
Changes to src/dirdiff.tcl.
︙ | ︙ | |||
790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 | $self SetNodeStatus $id unknown $self AddNodeToIdle $id } return [$tree rowattrib $id status] } method addCmdCol {tbl row col w} { set status [$tree rowattrib $row status] set type [$tree rowattrib $row type] set lf [$tree rowattrib $row leftfull] set rf [$tree rowattrib $row rightfull] set bg [$tbl cget -background] ttk::style configure Apa.TFrame -background $bg ttk::style configure Apa.Toolbutton -background $bg ttk::frame $w -style Apa.TFrame ttk::button $w.bl -image $::img(left) -style Apa.Toolbutton \ | > | | | 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 | $self SetNodeStatus $id unknown $self AddNodeToIdle $id } return [$tree rowattrib $id status] } method addCmdCol {tbl row col w} { set key [$tree getfullkeys $row] set status [$tree rowattrib $row status] set type [$tree rowattrib $row type] set lf [$tree rowattrib $row leftfull] set rf [$tree rowattrib $row rightfull] set bg [$tbl cget -background] ttk::style configure Apa.TFrame -background $bg ttk::style configure Apa.Toolbutton -background $bg ttk::frame $w -style Apa.TFrame ttk::button $w.bl -image $::img(left) -style Apa.Toolbutton \ -command [mymethod CopyFile $key right] ttk::button $w.br -image $::img(right) -style Apa.Toolbutton \ -command [mymethod CopyFile $key left] pack $w.bl $w.br -side left -fill y if {$lf eq ""} { $w.br configure -state disabled } if {$rf eq ""} { $w.bl configure -state disabled } |
︙ | ︙ |