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:
authorCampbell Barton <ideasman42@gmail.com>2021-09-06 13:33:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-09-06 13:34:00 +0300
commit4d0497bea44d10668a160d0f3882c6f11e7af587 (patch)
tree17be30a4985baec63f9e086860ad05c58b767503
parent4f0ec3cea5732e5b06122519538488e104c7ff00 (diff)
Cleanup: format, spelling
-rw-r--r--source/blender/makesdna/DNA_userdef_types.h2
-rw-r--r--source/blender/windowmanager/intern/wm_files.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h
index b519a6014f0..1cb561ddd9f 100644
--- a/source/blender/makesdna/DNA_userdef_types.h
+++ b/source/blender/makesdna/DNA_userdef_types.h
@@ -927,7 +927,7 @@ typedef struct UserDef {
char _pad10[2];
char file_preview_type; /* eUserpref_File_Preview_Type */
- char statusbar_flag; /* eUserpref_StatusBar_Flag */
+ char statusbar_flag; /* eUserpref_StatusBar_Flag */
struct WalkNavigation walk_navigation;
diff --git a/source/blender/windowmanager/intern/wm_files.c b/source/blender/windowmanager/intern/wm_files.c
index 2b796e60cdc..23c91dface9 100644
--- a/source/blender/windowmanager/intern/wm_files.c
+++ b/source/blender/windowmanager/intern/wm_files.c
@@ -1675,7 +1675,7 @@ static ImBuf *blend_file_thumb_from_camera(const bContext *C,
IMB_scaleImBuf(thumb_ibuf, BLEN_THUMB_SIZE, BLEN_THUMB_SIZE);
thumb = BKE_main_thumbnail_from_imbuf(NULL, thumb_ibuf);
IMB_freeImBuf(thumb_ibuf);
- /* Thumbnail saved to filesystem should be 256x256. */
+ /* Thumbnail saved to file-system should be 256x256. */
IMB_scaleImBuf(ibuf, PREVIEW_RENDER_LARGE_HEIGHT, PREVIEW_RENDER_LARGE_HEIGHT);
}
else {