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:
authorDaniel Salazar <zanqdo@gmail.com>2022-07-09 11:06:32 +0300
committerDaniel Salazar <zanqdo@gmail.com>2022-07-09 11:09:07 +0300
commit80f8b7cbbb562c6967ba81c76027a984cd9cd9b6 (patch)
tree7b8259c3b5e371bab1b48a85fac392617615a134 /source/blender/makesrna/intern
parente3801a2bd417b63f8b30c4c2dfa19b2efdbf9ce7 (diff)
UI: renaming fIle browser thumbnail sizes
Rename the thumbnail size from Regular to Medium since it's the typical way to refer to sizing in American English Reviewed By: Campbell Barton Differential Revision: https://developer.blender.org/D15305
Diffstat (limited to 'source/blender/makesrna/intern')
-rw-r--r--source/blender/makesrna/intern/rna_space.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index 969d1f2075e..e67d840eeac 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -6585,7 +6585,7 @@ static void rna_def_fileselect_params(BlenderRNA *brna)
static const EnumPropertyItem display_size_items[] = {
{64, "TINY", 0, "Tiny", ""},
{96, "SMALL", 0, "Small", ""},
- {128, "NORMAL", 0, "Regular", ""},
+ {128, "NORMAL", 0, "Medium", ""},
{192, "LARGE", 0, "Large", ""},
{0, NULL, 0, NULL, NULL},
};