From 6c585e44b0f955c9ac3ce208fd7fc4f922c422fe Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Sat, 16 Jul 2011 03:15:39 +0000 Subject: added raise/lower to cord tag svn path=/trunk/scripts/guiplugins/simple_examples/; revision=15158 --- editmode_look-plugin.tcl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'editmode_look-plugin.tcl') diff --git a/editmode_look-plugin.tcl b/editmode_look-plugin.tcl index 5cfe832..f7ab005 100644 --- a/editmode_look-plugin.tcl +++ b/editmode_look-plugin.tcl @@ -1,6 +1,6 @@ # this script makes it so that the cords are hidden when not in edit mode -proc set_cords_by_editmode {mytoplevel} { +proc set_cords_by_editmode {mytoplevel eventname} { if {$mytoplevel eq ".pdwindow"} {return} set tkcanvas [tkcanvas_name $mytoplevel] if { ! [winfo exists $mytoplevel] } {return} @@ -15,6 +15,7 @@ proc set_cords_by_editmode {mytoplevel} { $tkcanvas itemconfigure atom -activefill black $tkcanvas itemconfigure cord -fill black $tkcanvas itemconfigure {inlet || outlet} -outline black + $tkcanvas raise cord } else { $tkcanvas configure -background white $tkcanvas itemconfigure graph -fill magenta @@ -26,7 +27,7 @@ proc set_cords_by_editmode {mytoplevel} { $tkcanvas itemconfigure atom -activefill blue $tkcanvas itemconfigure cord -fill grey $tkcanvas itemconfigure {inlet || outlet} -outline white - $tkcanvas lower {inlet || outlet} + $tkcanvas lower {inlet || outlet || cord} } } -- cgit v1.2.1