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:
authorAaron Carlisle <carlisle.b3d@gmail.com>2020-03-05 01:43:17 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2020-03-05 01:43:17 +0300
commit3da2dc82132f82356ffdfaf3e4c9bf3e643e8aaf (patch)
tree508cda8ac0fdbc5de53823418172f033397560ac /release
parent337e86148688aa608d007381ee9ca78879050754 (diff)
Fix RNA runtime warning from recent commit
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_fluid.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/properties_physics_fluid.py b/release/scripts/startup/bl_ui/properties_physics_fluid.py
index 5a741533795..117352bf8f4 100644
--- a/release/scripts/startup/bl_ui/properties_physics_fluid.py
+++ b/release/scripts/startup/bl_ui/properties_physics_fluid.py
@@ -26,7 +26,7 @@ from .properties_physics_common import (
)
-class FLUID_MT_presets(PresetPanel, Panel):
+class FLUID_PT_presets(PresetPanel, Panel):
bl_label = "Fluid Presets"
preset_subdir = "fluid"
preset_operator = "script.execute_preset"
@@ -958,7 +958,7 @@ class PHYSICS_PT_diffusion(PhysicButtonsPanel, Panel):
return (context.engine in cls.COMPAT_ENGINES)
def draw_header_preset(self, _context):
- FLUID_MT_presets.draw_panel_header(self.layout)
+ FLUID_PT_presets.draw_panel_header(self.layout)
def draw(self, context):
layout = self.layout
@@ -1303,7 +1303,7 @@ class PHYSICS_PT_viewport_display_debug(PhysicButtonsPanel, Panel):
classes = (
- FLUID_MT_presets,
+ FLUID_PT_presets,
PHYSICS_PT_fluid,
PHYSICS_PT_settings,
PHYSICS_PT_borders,