summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authortreectrl <treectrl>2006-09-05 21:57:21 (GMT)
committertreectrl <treectrl>2006-09-05 21:57:21 (GMT)
commitd705d96d0da025d7d025eff6cd52ed29fb0dada4 (patch)
treed4d9c41b721a86559c654d3971b9f8031f098c5b /library
parent4ca29ea7b0eff09daa8f1192b5d1906220b5ca6a (diff)
downloadtktreectrl-d705d96d0da025d7d025eff6cd52ed29fb0dada4.zip
tktreectrl-d705d96d0da025d7d025eff6cd52ed29fb0dada4.tar.gz
tktreectrl-d705d96d0da025d7d025eff6cd52ed29fb0dada4.tar.bz2
Removed unused code.
Use [notify unbind] to remove a binding.
Diffstat (limited to 'library')
-rw-r--r--library/filelist-bindings.tcl16
1 files changed, 4 insertions, 12 deletions
diff --git a/library/filelist-bindings.tcl b/library/filelist-bindings.tcl
index b80138a..573e59d 100644
--- a/library/filelist-bindings.tcl
+++ b/library/filelist-bindings.tcl
@@ -1,4 +1,4 @@
-# RCS: @(#) $Id: filelist-bindings.tcl,v 1.20 2006/08/16 02:39:58 hobbs2 Exp $
+# RCS: @(#) $Id: filelist-bindings.tcl,v 1.21 2006/09/05 21:57:21 treectrl Exp $
bind TreeCtrlFileList <Double-ButtonPress-1> {
TreeCtrl::FileListEditCancel %W
@@ -547,16 +547,8 @@ proc ::TreeCtrl::EntryOpen {T item column element} {
$e selection range 0 end
set ebw [$e cget -borderwidth]
- if 1 {
- set ex [expr {$x - $ebw - 1}]
- place $e -x $ex -y [expr {$y - $ebw - 1}] \
- -bordermode outside
- } else {
- set hw [$T cget -highlightthickness]
- set bw [$T cget -borderwidth]
- set ex [expr {$x - $bw - $hw - $ebw - 1}]
- place $e -x $ex -y [expr {$y - $bw - $hw - $ebw - 1}]
- }
+ set ex [expr {$x - $ebw - 1}]
+ place $e -x $ex -y [expr {$y - $ebw - 1}] -bordermode outside
# Make the Entry as wide as the text plus "W" but keep it within the
# TreeCtrl borders
@@ -665,7 +657,7 @@ proc ::TreeCtrl::EditClose {T type accept {refocus 0}} {
E $Priv($type,$T,element) t $t]
}
- $T notify bind $w <Scroll> {}
+ $T notify unbind $w <Scroll>
TryEvent $T Edit end \
[list I $Priv($type,$T,item) C $Priv($type,$T,column) \