Skip to content
Snippets Groups Projects
Commit 6b4713c2 authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

remove unnecessary sys_vgui calls from g_numbox.c

parent d869d271
No related branches found
No related tags found
No related merge requests found
...@@ -185,12 +185,15 @@ static void my_numbox_draw_new(t_my_numbox *x, t_glist *glist) ...@@ -185,12 +185,15 @@ static void my_numbox_draw_new(t_my_numbox *x, t_glist *glist)
x2 - x1, x2 - x1,
y2 - y1, y2 - y1,
glist_istoplevel(canvas)); glist_istoplevel(canvas));
/* Not sure when it is necessary to hide the frame... */ /* Not sure when it is necessary to hide the frame... perhaps for
k12? */
if (!x->x_hide_frame || x->x_hide_frame == 2) if (!x->x_hide_frame || x->x_hide_frame == 2)
sys_vgui(".x%lx.c create polyline %d %d %d %d %d %d -stroke #%6.6x " {
"-tags {%lxBASE2 x%lx text iemgui}\n", //sys_vgui(".x%lx.c create polyline %d %d %d %d %d %d -stroke #%6.6x "
canvas, x1, y1, x1 + half, y1 + half, x1, y2, // "-tags {%lxBASE2 x%lx text iemgui}\n",
x->x_gui.x_fcol, x, x); // canvas, x1, y1, x1 + half, y1 + half, x1, y2,
// x->x_gui.x_fcol, x, x);
}
my_numbox_ftoa(x); my_numbox_ftoa(x);
//sys_vgui(".x%lx.c create text %d %d -text {%s} -anchor w " //sys_vgui(".x%lx.c create text %d %d -text {%s} -anchor w "
// "-font %s -fill #%6.6x -tags {%lxNUMBER x%lx noscroll text iemgui}\n", // "-font %s -fill #%6.6x -tags {%lxNUMBER x%lx noscroll text iemgui}\n",
...@@ -273,12 +276,12 @@ static void my_numbox_draw_select(t_my_numbox *x, t_glist *glist) ...@@ -273,12 +276,12 @@ static void my_numbox_draw_select(t_my_numbox *x, t_glist *glist)
char bcol[8]; sprintf(bcol, "#%6.6x", x->x_gui.x_bcol); char bcol[8]; sprintf(bcol, "#%6.6x", x->x_gui.x_bcol);
// The logic in these sys_vgui calls is being taken care // The logic in these sys_vgui calls is being taken care
// of in the gui now... // of in the gui now...
sys_vgui(".x%lx.c itemconfigure %lxBASE1 -stroke %s\n", canvas, x, //sys_vgui(".x%lx.c itemconfigure %lxBASE1 -stroke %s\n", canvas, x,
issel ? selection_color : x->x_hide_frame <= 1 ? "$pd_colors(iemgui_border)" : bcol); // issel ? selection_color : x->x_hide_frame <= 1 ? "$pd_colors(iemgui_border)" : bcol);
sys_vgui(".x%lx.c itemconfigure %lxBASE2 -stroke %s\n", canvas, x, //sys_vgui(".x%lx.c itemconfigure %lxBASE2 -stroke %s\n", canvas, x,
issel ? selection_color : fcol); // issel ? selection_color : fcol);
sys_vgui(".x%lx.c itemconfigure %lxNUMBER -fill %s\n", canvas, x, //sys_vgui(".x%lx.c itemconfigure %lxNUMBER -fill %s\n", canvas, x,
issel ? selection_color : fcol); // issel ? selection_color : fcol);
if(issel) if(issel)
scalehandle_draw_select2(&x->x_gui); scalehandle_draw_select2(&x->x_gui);
else 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