Skip to content
Snippets Groups Projects
Commit f20afb38 authored by Jonathan Wilkes's avatar Jonathan Wilkes Committed by Ivica Bukvic
Browse files

don't apply legacy positions unless the "-legacy" flag is used

parent b24f7b45
No related branches found
No related tags found
No related merge requests found
...@@ -1018,8 +1018,8 @@ void iemgui_label_draw_move(t_iemgui *x) ...@@ -1018,8 +1018,8 @@ void iemgui_label_draw_move(t_iemgui *x)
gui_vmess("gui_iemgui_label_coords", "xxii", gui_vmess("gui_iemgui_label_coords", "xxii",
canvas, canvas,
x, x,
x->x_ldx + x->legacy_x, x->x_ldx + (sys_legacy ? x->legacy_x : 0),
x->x_ldy + x->legacy_y); x->x_ldy + (sys_legacy ? x->legacy_y : 0));
} }
void iemgui_label_draw_config(t_iemgui *x) void iemgui_label_draw_config(t_iemgui *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