Skip to content
Snippets Groups Projects
Commit 6938b964 authored by Campbell Barton's avatar Campbell Barton
Browse files

blender_theme_as_c: ignore active space

parent 990dcc56
Branches
Tags
No related merge requests found
......@@ -210,6 +210,10 @@ def is_ignore_dna_name(name):
return True
elif name.startswith(b'pad') and name[3:].isdigit():
return True
elif name in {
b'active_theme_area',
}:
return True
else:
return False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment