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:
authorYimingWu <xp8110@outlook.com>2021-06-15 16:43:16 +0300
committerYimingWu <xp8110@outlook.com>2021-06-15 16:43:16 +0300
commit3dfda41c466e4e3b85ebe68d6e8b7b6433a468d2 (patch)
treecc8cb6a9eb4235ed072e304e9e8aed962f99a917
parentfad1d746c8776a16c3592ce39b38c6bae98107ed (diff)
LineArt: Remove custom camera options as this patch doesn't include this function.lineart-fn-cached
-rw-r--r--source/blender/gpencil_modifiers/intern/MOD_gpencillineart.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/source/blender/gpencil_modifiers/intern/MOD_gpencillineart.c b/source/blender/gpencil_modifiers/intern/MOD_gpencillineart.c
index 491a96b671c..2162b32c1e0 100644
--- a/source/blender/gpencil_modifiers/intern/MOD_gpencillineart.c
+++ b/source/blender/gpencil_modifiers/intern/MOD_gpencillineart.c
@@ -358,15 +358,6 @@ static void options_panel_draw(const bContext *UNUSED(C), Panel *panel)
uiLayoutSetEnabled(layout, !is_baked);
if (!use_cache || is_first) {
- uiLayout *row = uiLayoutRowWithHeading(layout, false, IFACE_("Custom Camera"));
- uiItemR(row, ptr, "use_custom_camera", 0, "", 0);
- uiLayout *subrow = uiLayoutRow(row, true);
- uiLayoutSetActive(subrow, RNA_boolean_get(ptr, "use_custom_camera"));
- uiLayoutSetPropSep(subrow, true);
- uiItemR(subrow, ptr, "source_camera", 0, "", ICON_OBJECT_DATA);
-
- uiItemR(layout, ptr, "overscan", 0, NULL, ICON_NONE);
-
uiItemR(layout, ptr, "use_remove_doubles", 0, NULL, ICON_NONE);
uiItemR(layout, ptr, "use_edge_overlap", 0, IFACE_("Overlapping Edges As Contour"), ICON_NONE);
uiItemR(layout, ptr, "use_object_instances", 0, NULL, ICON_NONE);