From 3dfda41c466e4e3b85ebe68d6e8b7b6433a468d2 Mon Sep 17 00:00:00 2001 From: YimingWu Date: Tue, 15 Jun 2021 21:43:16 +0800 Subject: LineArt: Remove custom camera options as this patch doesn't include this function. --- source/blender/gpencil_modifiers/intern/MOD_gpencillineart.c | 9 --------- 1 file changed, 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); -- cgit v1.2.3