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:
authorJörg Müller <nexyon@gmail.com>2021-03-17 01:45:49 +0300
committerJörg Müller <nexyon@gmail.com>2021-03-17 01:45:49 +0300
commitde06cb85593baf27455509a16100d82cc5a81d92 (patch)
tree3b4e03ad9aa010d9f828fafc568dc4acd01b2277 /source/blender/makesrna/intern
parent12c08ceee3b034e360824969ea4e1aaed4be2daf (diff)
Bugfix: properly rename Null audio device to None
Diffstat (limited to 'source/blender/makesrna/intern')
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index 648b429acf6..edde5a1ed37 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -98,7 +98,7 @@ const EnumPropertyItem rna_enum_preference_section_items[] = {
};
static const EnumPropertyItem audio_device_items[] = {
- {0, "Null", 0, "None", "Null device - there will be no audio output"},
+ {0, "None", 0, "None", "No device - there will be no audio output"},
{0, NULL, 0, NULL, NULL},
};