From 17b61432441b72ed02cd99f7c7caeddd2b93f73b Mon Sep 17 00:00:00 2001 From: Lawrence D'Oliveiro Date: Tue, 4 Feb 2014 18:38:59 +0100 Subject: [PATCH] Correct help: -b/--background does not take a file argument The documentation for the -b/--background option incorrectly states that it takes a , however it can run also without a file with e.g. a script. Reviewed By: brecht Differential Revision: https://developer.blender.org/D250 --- source/creator/creator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/creator/creator.c b/source/creator/creator.c index 7e592552e2c..8559a08d8b6 100644 --- a/source/creator/creator.c +++ b/source/creator/creator.c @@ -1378,7 +1378,7 @@ static void setupArguments(bContext *C, bArgs *ba, SYS_SystemHandle *syshandle) #undef PY_ENABLE_AUTO #undef PY_DISABLE_AUTO - BLI_argsAdd(ba, 1, "-b", "--background", "\n\tLoad in background (often used for UI-less rendering)", background_mode, NULL); + BLI_argsAdd(ba, 1, "-b", "--background", "\n\tRun in background (often used for UI-less rendering)", background_mode, NULL); BLI_argsAdd(ba, 1, "-a", NULL, playback_doc, playback_mode, NULL);