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

fix offset for the circle in [bng]

parent fcef489f
No related branches found
No related tags found
No related merge requests found
......@@ -42,8 +42,8 @@ void bng_draw_new(t_bng *x, t_glist *glist)
int y1=text_ypix(&x->x_gui.x_obj, glist);
iemgui_base_draw_new(&x->x_gui);
t_float cr = (x->x_gui.x_w-2)/2.0;
t_float cx = x1+cr+1.5;
t_float cy = y1+cr+1.5;
t_float cx = x1+cr+1;
t_float cy = y1+cr+1;
/* The circle isn't quite centered in the nw.js port. Let's use the
old interface to see if there's anything we're doing wrong. Then once
we get the circle placement right we can remove the old code here... */
......@@ -69,8 +69,8 @@ void bng_draw_move(t_bng *x, t_glist *glist)
iemgui_base_draw_move(&x->x_gui);
t_float cr = (x->x_gui.x_w-2)/2.0;
t_float cx = x1+cr+1.5;
t_float cy = y1+cr+1.5;
t_float cx = x1+cr+1;
t_float cy = y1+cr+1;
gui_vmess("gui_bng_configure", "xxxfff",
canvas,
x,
......
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