From 3da2dc82132f82356ffdfaf3e4c9bf3e643e8aaf Mon Sep 17 00:00:00 2001 From: Aaron Carlisle Date: Wed, 4 Mar 2020 17:43:17 -0500 Subject: Fix RNA runtime warning from recent commit --- release/scripts/startup/bl_ui/properties_physics_fluid.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'release') 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, -- cgit v1.2.3