From e30a9f73bc98b93e15d5cd7113ed47f753b089a0 Mon Sep 17 00:00:00 2001 From: Trevor SANDY Date: Thu, 2 Jan 2025 08:11:20 +0100 Subject: [PATCH] Blender addon - remove config file argument from console command --- qt/lc_renderdialog.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/qt/lc_renderdialog.cpp b/qt/lc_renderdialog.cpp index 069ca8f7..4b45dfad 100644 --- a/qt/lc_renderdialog.cpp +++ b/qt/lc_renderdialog.cpp @@ -447,12 +447,11 @@ void lcRenderDialog::on_RenderButton_clicked() "'EXEC_DEFAULT', " "resolution_width=%1, resolution_height=%2, " "render_percentage=%3, model_file=r'%4', " - "image_file=r'%5', preferences_file=r'%6'") + "image_file=r'%5'") .arg(mWidth).arg(mHeight) .arg(mScale * 100) .arg(QDir::toNativeSeparators(ModelFileName).replace("\\","\\\\")) - .arg(QDir::toNativeSeparators(ui->OutputEdit->text()).replace("\\","\\\\")) - .arg(QDir::toNativeSeparators(BlenderLDrawConfigFile).replace("\\","\\\\")); + .arg(QDir::toNativeSeparators(ui->OutputEdit->text()).replace("\\","\\\\")); if (BlenderImportModule == QLatin1String("MM")) PythonExpression.append(", use_ldraw_import_mm=True"); if (SearchCustomDir)