mirror of
https://github.com/godotengine/godot.git
synced 2025-10-22 09:23:40 +00:00
Fix suspicious | and + operators
This commit is contained in:
parent
63b0d822d1
commit
d0621b954b
2 changed files with 2 additions and 2 deletions
|
@ -355,7 +355,7 @@ void VisualScriptPropertySelector::get_visual_node_names(const String &root_filt
|
|||
continue;
|
||||
}
|
||||
|
||||
bool in_modifier = false | p_modifiers.empty();
|
||||
bool in_modifier = p_modifiers.empty();
|
||||
for (Set<String>::Element *F = p_modifiers.front(); F && in_modifier; F = F->next()) {
|
||||
if (E->get().findn(F->get()) != -1)
|
||||
in_modifier = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue