Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Wynn
purr-data
Commits
690039ae
Commit
690039ae
authored
Jun 05, 2016
by
Jonathan Wilkes
Browse files
add missing conditional accidentally left out of the Vanilla backports
parent
bbdd73db
Changes
1
Show whitespace changes
Inline
Side-by-side
pd/src/g_canvas.c
View file @
690039ae
...
...
@@ -1171,7 +1171,8 @@ void canvas_initbang(t_canvas *x)
t_symbol
*
s
=
gensym
(
"loadbang"
);
/* run "initbang" for all subpatches, but NOT for the child abstractions */
for
(
y
=
x
->
gl_list
;
y
;
y
=
y
->
g_next
)
if
(
!
canvas_isabstraction
((
t_canvas
*
)
y
))
if
(
pd_class
(
&
y
->
g_pd
)
==
canvas_class
&&
!
canvas_isabstraction
((
t_canvas
*
)
y
))
canvas_initbang
((
t_canvas
*
)
y
);
/* call the initbang()-method for objects that have one */
...
...
Write
Preview
Markdown
is supported
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