Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-02-11 09:49:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-11 09:49:35 +0300
commit42368a2321d52d33bf9f49616fd65bbc905840d1 (patch)
tree011c961841dffa7497f4d3792343cc61192dd999 /release/scripts/startup/bl_ui/properties_physics_smoke.py
parent826d9ac827cc3890ca00bb9c46efed39c63dd324 (diff)
Cleanup: RNA boolean names (use prefix conventions)
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_physics_smoke.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_smoke.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_physics_smoke.py b/release/scripts/startup/bl_ui/properties_physics_smoke.py
index 1f52f768676..9d170d07c69 100644
--- a/release/scripts/startup/bl_ui/properties_physics_smoke.py
+++ b/release/scripts/startup/bl_ui/properties_physics_smoke.py
@@ -649,7 +649,7 @@ class PHYSICS_PT_smoke_viewport_display_debug(PhysicButtonsPanel, Panel):
def draw_header(self, context):
md = context.smoke.domain_settings
- self.layout.prop(md, "display_velocity", text="")
+ self.layout.prop(md, "show_velocity", text="")
def draw(self, context):
layout = self.layout
@@ -659,7 +659,7 @@ class PHYSICS_PT_smoke_viewport_display_debug(PhysicButtonsPanel, Panel):
domain = context.smoke.domain_settings
col = flow.column()
- col.enabled = domain.display_velocity
+ col.enabled = domain.show_velocity
col.prop(domain, "vector_display_type", text="Display As")
col.prop(domain, "vector_scale")