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-10-12 09:52:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-10-12 09:55:02 +0300
commitc1c6c11ca6c5f4cd775b787910fe69119b054af2 (patch)
treee41bb7057e27810c18ca6cc23e40ee48c3e814b4 /source/blender/editors/render
parenta91c6f1804e9ce07e9f751bc1c3c05751da7607a (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/editors/render')
-rw-r--r--source/blender/editors/render/render_view.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/editors/render/render_view.c b/source/blender/editors/render/render_view.c
index 97ecb67d6cc..0e5acc0a108 100644
--- a/source/blender/editors/render/render_view.c
+++ b/source/blender/editors/render/render_view.c
@@ -183,8 +183,8 @@ ScrArea *render_view_open(bContext *C, int mx, int my, ReportList *reports)
else if (U.render_display_type == USER_RENDER_DISPLAY_SCREEN) {
area = CTX_wm_area(C);
- /* if the active screen is already in fullscreen mode, skip this and
- * unset the area, so that the fullscreen area is just changed later */
+ /* If the active screen is already in full-screen mode, skip this and
+ * unset the area, so that the full-screen area is just changed later. */
if (area && area->full) {
area = NULL;
}
@@ -216,10 +216,10 @@ ScrArea *render_view_open(bContext *C, int mx, int my, ReportList *reports)
ED_area_newspace(C, area, SPACE_IMAGE, true);
sima = area->spacedata.first;
- /* makes ESC go back to prev space */
+ /* Makes "Escape" go back to previous space. */
sima->flag |= SI_PREVSPACE;
- /* we already had a fullscreen here -> mark new space as a stacked fullscreen */
+ /* We already had a full-screen here -> mark new space as a stacked full-screen. */
if (area->full) {
area->flag |= AREA_FLAG_STACKED_FULLSCREEN;
}
@@ -231,7 +231,7 @@ ScrArea *render_view_open(bContext *C, int mx, int my, ReportList *reports)
// XXX newspace(area, SPACE_IMAGE);
sima = area->spacedata.first;
- /* makes ESC go back to prev space */
+ /* Makes "Escape" go back to previous space. */
sima->flag |= SI_PREVSPACE;
}
}
@@ -275,7 +275,7 @@ static int render_view_cancel_exec(bContext *C, wmOperator *UNUSED(op))
ScrArea *area = CTX_wm_area(C);
SpaceImage *sima = area->spacedata.first;
- /* ensure image editor fullscreen and area fullscreen states are in sync */
+ /* ensure image editor full-screen and area full-screen states are in sync */
if ((sima->flag & SI_FULLWINDOW) && !area->full) {
sima->flag &= ~SI_FULLWINDOW;
}