aboutsummaryrefslogtreecommitdiff
path: root/pddp
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-06-13 04:17:19 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-06-13 04:17:19 +0000
commitfb4e720d6aa2ab154652cc8ac2e1ef0b1b12ac6a (patch)
tree767f4ffc703adad3e78ae55d416399c07b86c63f /pddp
parent27bebcc36d74c37e0e6d5c1b527c31d8765ab10c (diff)
made links blue, but a different blue than Pd selected text, plus hover turns red
svn path=/trunk/externals/miXed/; revision=7770
Diffstat (limited to 'pddp')
-rw-r--r--pddp/pddplink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pddp/pddplink.c b/pddp/pddplink.c
index 307db62..466be8d 100644
--- a/pddp/pddplink.c
+++ b/pddp/pddplink.c
@@ -98,7 +98,7 @@ static void pddplink_select(t_gobj *z, t_glist *glist, int state)
sys_vgui(".x%lx.c itemconfigure %s -fill blue\n",
glist, rtext_gettag(y));
else
- sys_vgui(".x%lx.c itemconfigure %s -text {%s} -fill magenta\n",
+ sys_vgui(".x%lx.c itemconfigure %s -text {%s} -fill #0000dd -activefill #e70000\n",
glist, rtext_gettag(y), x->x_vistext);
}
}
@@ -121,7 +121,7 @@ static void pddplink_vis(t_gobj *z, t_glist *glist, int vis)
&& (y = glist_findrtext(glist, (t_text *)x)))
{
rtext_draw(y);
- sys_vgui(".x%lx.c itemconfigure %s -text {%s} -fill magenta\n",
+ sys_vgui(".x%lx.c itemconfigure %s -text {%s} -fill #0000dd -activefill #e70000\n",
glist_getcanvas(glist), rtext_gettag(y), x->x_vistext);
}
}