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:
authorLawrence D'Oliveiro <from-blender@geek-central.gen.nz>2014-02-04 21:38:59 +0400
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2014-02-04 21:51:05 +0400
commit17b61432441b72ed02cd99f7c7caeddd2b93f73b (patch)
treeb0227a1f2356ed8b1747336c748395c70f8f4519 /source/creator
parent142228433a8bfb2476135427492a5ec74e9a3c01 (diff)
Correct help: -b/--background does not take a file argument
The documentation for the -b/--background option incorrectly states that it takes a <file>, however it can run also without a file with e.g. a script. Reviewed By: brecht Differential Revision: https://developer.blender.org/D250
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c2
1 files changed, 1 insertions, 1 deletions
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", "<file>\n\tLoad <file> 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);