From 9fe6dc365861cfd2451b5f668a31e91ea971d096 Mon Sep 17 00:00:00 2001 From: Trevor SANDY Date: Fri, 19 May 2023 16:10:00 +0200 Subject: [PATCH] Blender addon - render lc_profile --- common/lc_profile.cpp | 5 +++-- common/lc_profile.h | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/common/lc_profile.cpp b/common/lc_profile.cpp index 66847237..f1cc0c7f 100644 --- a/common/lc_profile.cpp +++ b/common/lc_profile.cpp @@ -140,8 +140,9 @@ static lcProfileEntry gProfileEntries[LC_NUM_PROFILE_KEYS] = lcProfileEntry("POVRay", "Path", "/usr/bin/povray"), // LC_PROFILE_POVRAY_PATH lcProfileEntry("POVRay", "LGEOPath", ""), // LC_PROFILE_POVRAY_LGEO_PATH - lcProfileEntry("POVRay", "Width", 1280), // LC_PROFILE_POVRAY_WIDTH - lcProfileEntry("POVRay", "Height", 720), // LC_PROFILE_POVRAY_HEIGHT + + lcProfileEntry("Render", "Width", 1280), // LC_PROFILE_RENDER_WIDTH + lcProfileEntry("Render", "Height", 720), // LC_PROFILE_RENDER_HEIGHT lcProfileEntry("Blender", "Path", ""), // LC_PROFILE_BLENDER_PATH lcProfileEntry("Blender", "LDrawConfigPath", ""), // LC_PROFILE_BLENDER_LDRAW_CONFIG_PATH diff --git a/common/lc_profile.h b/common/lc_profile.h index aaadc873..16508434 100644 --- a/common/lc_profile.h +++ b/common/lc_profile.h @@ -88,8 +88,8 @@ enum LC_PROFILE_KEY LC_PROFILE_HTML_IMAGE_HEIGHT, LC_PROFILE_POVRAY_PATH, LC_PROFILE_POVRAY_LGEO_PATH, - LC_PROFILE_POVRAY_WIDTH, - LC_PROFILE_POVRAY_HEIGHT, + LC_PROFILE_RENDER_WIDTH, + LC_PROFILE_RENDER_HEIGHT, LC_PROFILE_BLENDER_PATH, LC_PROFILE_BLENDER_LDRAW_CONFIG_PATH, LC_PROFILE_BLENDER_VERSION,