Skip to content
Snippets Groups Projects
Commit 4c43fc05 authored by Ivica Bukvic's avatar Ivica Bukvic
Browse files

*made sure that iemgui labels are only drawn selected if they are on parent canvas

*cleaned up formatting to make source more legible
parent f0ec2753
No related branches found
No related tags found
No related merge requests found
......@@ -945,10 +945,12 @@ void iemgui_label_draw_new(t_iemgui *x, t_glist *canvas, int xpos, int ypos, con
iemgui_font(x), x->x_fontsize, sys_fontweight,
x->x_lcol, x, x, nlet_tag);
}
void iemgui_label_draw_move(t_iemgui *x, t_glist *canvas, int xpos, int ypos) {
sys_vgui(".x%lx.c coords %lxLABEL %d %d\n",
canvas, x, xpos+x->x_ldx, ypos+x->x_ldy);
}
void iemgui_label_draw_config(t_iemgui *x, t_glist *canvas) {
if (x->x_selected && x->x_glist == canvas)
sys_vgui(".x%lx.c itemconfigure %lxLABEL -font {{%s} -%d %s} "
......@@ -961,8 +963,9 @@ void iemgui_label_draw_config(t_iemgui *x, t_glist *canvas) {
canvas, x, iemgui_font(x), x->x_fontsize, sys_fontweight,
x->x_lcol, x->x_lab!=s_empty?x->x_lab->s_name:"");
}
void iemgui_label_draw_select(t_iemgui *x, t_glist *canvas) {
if(x->x_selected)
if (x->x_selected && x->x_glist == canvas)
sys_vgui(".x%lx.c itemconfigure %lxLABEL "
"-fill $pd_colors(selection)\n", canvas, x);
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment