Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Jonathan Wilkes
purr-data
Commits
4a9e4dfd
Commit
4a9e4dfd
authored
May 12, 2020
by
Jonathan Wilkes
Browse files
don't apply legacy positions unless the "-legacy" flag is used
parent
1823664f
Pipeline
#1764
passed with stage
in 264 minutes and 32 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
pd/src/g_all_guis.c
View file @
4a9e4dfd
...
...
@@ -1018,8 +1018,8 @@ void iemgui_label_draw_move(t_iemgui *x)
gui_vmess
(
"gui_iemgui_label_coords"
,
"xxii"
,
canvas
,
x
,
x
->
x_ldx
+
x
->
legacy_x
,
x
->
x_ldy
+
x
->
legacy_y
);
x
->
x_ldx
+
(
sys_legacy
?
x
->
legacy_x
:
0
)
,
x
->
x_ldy
+
(
sys_legacy
?
x
->
legacy_y
:
0
)
);
}
void
iemgui_label_draw_config
(
t_iemgui
*
x
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment