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

*fixed regression left from refactoring where toggle's X when off did not...

*fixed regression left from refactoring where toggle's X when off did not match that of a background color once the background was changed.
parent 1ffdd15e
No related branches found
No related tags found
No related merge requests found
...@@ -73,7 +73,7 @@ void toggle_draw_config(t_toggle* x, t_glist* glist) ...@@ -73,7 +73,7 @@ void toggle_draw_config(t_toggle* x, t_glist* glist)
{ {
t_canvas *canvas=glist_getcanvas(glist); t_canvas *canvas=glist_getcanvas(glist);
iemgui_base_draw_config(&x->x_gui); iemgui_base_draw_config(&x->x_gui);
sys_vgui(".x%lx.c itemconfigure {%lxX1||%lX2} -fill #%6.6x\n", sys_vgui(".x%lx.c itemconfigure {%lxX1||%lxX2} -stroke #%6.6x\n",
canvas, x, x, x->x_on?x->x_gui.x_fcol:x->x_gui.x_bcol); canvas, x, x, x->x_on?x->x_gui.x_fcol:x->x_gui.x_bcol);
} }
......
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