Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fixed bug where copy context menu used the wrong key. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
e7d99aa2328a6985575d443e77cd1f7d |
User & Date: | peter 2020-09-02 12:33:47.533 |
Context
2020-09-28
| ||
16:55 | Cleanup check-in: 3b6cf630b3 user: peter tags: trunk | |
2020-09-02
| ||
12:33 | Fixed bug where copy context menu used the wrong key. check-in: e7d99aa232 user: peter tags: trunk | |
2020-06-25
| ||
12:48 | Better handling of extra events in Balloon Help check-in: 963da4b53d user: peter tags: trunk | |
Changes
Changes to Changes.
1 2 3 4 5 6 7 | 2020-04-14 Added gunzip plugin. 2020-01-15 Do not traverse a unique side in dir diff. Support -norun for dir diff. Prune empty directories in dir diff. | > > > | 1 2 3 4 5 6 7 8 9 10 | 2020-09-02 Fixed bug where copy context menu used the wrong key. 2020-04-14 Added gunzip plugin. 2020-01-15 Do not traverse a unique side in dir diff. Support -norun for dir diff. Prune empty directories in dir diff. |
︙ | ︙ |
Changes to src/dirdiff.tcl.
︙ | ︙ | |||
649 650 651 652 653 654 655 | set fromp [$tree rowattrib $parent ${from}full] set top [$tree rowattrib $parent ${to}full] } } if {[file exists $dst]} { if {[tk_messageBox -icon question -title "Overwrite file?" -message \ | | | 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 | set fromp [$tree rowattrib $parent ${from}full] set top [$tree rowattrib $parent ${to}full] } } if {[file exists $dst]} { if {[tk_messageBox -icon question -title "Overwrite file?" -message \ "Copy\n$src\n\noverwriting\n$dst ?" -type yesno] eq "yes"} { file copy -force $src $dst # FIXA: update file info in tree too $self SetNodeStatus $node equal } } else { set msg "Copy\n$src\nto\n$dst ?" set dstdir [file dirname $dst] |
︙ | ︙ | |||
676 677 678 679 680 681 682 | } } } # React on double-click method DoubleClick {W x y} { foreach {W x y} [tablelist::convEventFields $W $x $y] break | > | | 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 | } } } # React on double-click method DoubleClick {W x y} { foreach {W x y} [tablelist::convEventFields $W $x $y] break set index [$tree index @$x,$y] set node [$tree getfullkeys $index] set lf [$tree rowattrib $node leftfull] set rf [$tree rowattrib $node rightfull] set type [$tree rowattrib $node type] # On a file that exists on both sides, start a file diff if {$type eq "file" && $lf ne "" && $rf ne ""} { |
︙ | ︙ | |||
714 715 716 717 718 719 720 | } } # Bring up a context menu on a file. method ContextMenu {W x y X Y} { foreach {W x y} [tablelist::convEventFields $W $x $y] break | > | | 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 | } } # Bring up a context menu on a file. method ContextMenu {W x y X Y} { foreach {W x y} [tablelist::convEventFields $W $x $y] break set index [$tree index @$x,$y] set node [$tree getfullkeys $index] set col [$tree columnindex @$x,$y] set colname [$tree columncget $col -name] set lf [$tree rowattrib $node leftfull] set rf [$tree rowattrib $node rightfull] set type [$tree rowattrib $node type] set oneside [expr {($lf ne "") ^ ($rf ne "")}] |
︙ | ︙ |
Changes to src/startup.tcl.
︙ | ︙ | |||
161 162 163 164 165 166 167 168 169 170 171 172 173 174 | upvar \#0 $varName var if { ! [info exists var]} { set var "" } } } # Circumvent a bug in ttk::entry that "xview end" does not work. method xview {args} { if {[llength $args] == 1} { set ix [lindex $args 0] $hull xview [$hull index $ix] } else { $hull xview {*}$args } | > | 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 | upvar \#0 $varName var if { ! [info exists var]} { set var "" } } } # Circumvent a bug in ttk::entry that "xview end" does not work. # Fixed 2013-06-05, bug 3613750. 8.5.16 and 8.6.2. method xview {args} { if {[llength $args] == 1} { set ix [lindex $args 0] $hull xview [$hull index $ix] } else { $hull xview {*}$args } |
︙ | ︙ |