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-06 06:44:27 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-10-06 06:54:05 +0300
commitdf8f507f411fd71e649e9a896f53c2e574558525 (patch)
treec248e58ff8eb31e27ca9a1aae2bc76b8bb4dd3a7 /source/blender/editors/space_view3d/view3d_draw.c
parentbf35dba7fbab568e857b85e9a74ae0f1eb5838f6 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/editors/space_view3d/view3d_draw.c')
-rw-r--r--source/blender/editors/space_view3d/view3d_draw.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_view3d/view3d_draw.c b/source/blender/editors/space_view3d/view3d_draw.c
index 1cfd83c503e..733ec7e81cd 100644
--- a/source/blender/editors/space_view3d/view3d_draw.c
+++ b/source/blender/editors/space_view3d/view3d_draw.c
@@ -780,9 +780,9 @@ static void drawviewborder(Scene *scene, Depsgraph *depsgraph, ARegion *region,
immUniformThemeColorShadeAlpha(TH_VIEW_OVERLAY, 100, 255);
/* TODO: Was using:
- * UI_draw_roundbox_4fv(false, rect.xmin, rect.ymin, rect.xmax, rect.ymax, 2.0f, color);
- * We'll probably need a new imm_draw_line_roundbox_dashed dor that - though in practice the
- * 2.0f round corner effect was nearly not visible anyway... */
+ * `UI_draw_roundbox_4fv(false, rect.xmin, rect.ymin, rect.xmax, rect.ymax, 2.0f, color);`
+ * We'll probably need a new imm_draw_line_roundbox_dashed or that - though in practice the
+ * 2.0f round corner effect was nearly not visible anyway. */
imm_draw_box_wire_2d(shdr_pos, rect.xmin, rect.ymin, rect.xmax, rect.ymax);
}