From fce8ab8d1e1514e1d8d9e39d3327df7320371f05 Mon Sep 17 00:00:00 2001 From: Stefan Schippers Date: Mon, 7 Sep 2020 09:40:07 +0200 Subject: [PATCH] remove dbg message --- src/xschem.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xschem.tcl b/src/xschem.tcl index bb50a9e5..67edd55b 100644 --- a/src/xschem.tcl +++ b/src/xschem.tcl @@ -2928,7 +2928,7 @@ proc build_windows {} { # on Windows Alt key mask is reported as 131072 (1<<17) so build masks manually with values passed from C code if {$::OS == "Windows" } { - bind .drw {puts xxx; xschem callback %T %x %y %N 0 0 [expr $Mod1Mask]} + bind .drw {xschem callback %T %x %y %N 0 0 [expr $Mod1Mask]} bind .drw {xschem callback %T %x %y %N 0 0 [expr $ShiftMask + $Mod1Mask]} bind .drw {xschem callback %T %x %y %N 0 0 9 [expr $ControlMask + $Mod1Mask]} }