aboutsummaryrefslogtreecommitdiff
path: root/editmode_look-plugin.tcl
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-07-16 03:15:39 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-07-16 03:15:39 +0000
commit6c585e44b0f955c9ac3ce208fd7fc4f922c422fe (patch)
treecdeeb2972721dc72329306f915a9a45681392533 /editmode_look-plugin.tcl
parentf887c19fc07ef662db06a0962dac361f24d03562 (diff)
added raise/lower to cord tag
svn path=/trunk/scripts/guiplugins/simple_examples/; revision=15158
Diffstat (limited to 'editmode_look-plugin.tcl')
-rw-r--r--editmode_look-plugin.tcl5
1 files changed, 3 insertions, 2 deletions
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}
}
}