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:
authorKévin Dietrich <kevin.dietrich@mailoo.org>2021-10-20 19:25:21 +0300
committerKévin Dietrich <kevin.dietrich@mailoo.org>2021-10-20 19:25:21 +0300
commite2a0c5dfbfc588b8d742fee1032da10af93468c5 (patch)
treea8af69777cda3e0a28b22bd4c47c17cad7166317 /source/blender/modifiers/intern/MOD_meshsequencecache.cc
parent3f7a93a4df25c39abda5c1ab81cce243f6efb9eb (diff)
Fix UI.
Diffstat (limited to 'source/blender/modifiers/intern/MOD_meshsequencecache.cc')
-rw-r--r--source/blender/modifiers/intern/MOD_meshsequencecache.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/modifiers/intern/MOD_meshsequencecache.cc b/source/blender/modifiers/intern/MOD_meshsequencecache.cc
index 3c6f926f282..2fc9f8a9647 100644
--- a/source/blender/modifiers/intern/MOD_meshsequencecache.cc
+++ b/source/blender/modifiers/intern/MOD_meshsequencecache.cc
@@ -444,6 +444,7 @@ static void velocity_panel_draw(const bContext *UNUSED(C), Panel *panel)
return;
}
+ uiLayoutSetPropSep(layout, true);
uiTemplateCacheFileVelocity(layout, &fileptr);
uiItemR(layout, ptr, "velocity_scale", 0, nullptr, ICON_NONE);
}
@@ -460,6 +461,7 @@ static void attribute_remapping_panel_draw(const bContext *C, Panel *panel)
return;
}
+ uiLayoutSetPropSep(layout, true);
uiTemplateCacheFileAttributeRemapping(layout, C, &fileptr);
}
@@ -475,6 +477,7 @@ static void override_layers_panel_draw(const bContext *C, Panel *panel)
return;
}
+ uiLayoutSetPropSep(layout, true);
uiTemplateCacheFileLayers(layout, C, &fileptr);
}
@@ -490,6 +493,7 @@ static void time_settings_panel_draw(const bContext *UNUSED(C), Panel *panel)
return;
}
+ uiLayoutSetPropSep(layout, true);
uiTemplateCacheFileTimeSettings(layout, &fileptr);
}
@@ -505,6 +509,7 @@ static void render_procedural_panel_draw(const bContext *C, Panel *panel)
return;
}
+ uiLayoutSetPropSep(layout, true);
uiTemplateCacheFileProcedural(layout, C, &fileptr);
}