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-07-30 15:20:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-07-30 15:20:31 +0300
commit5aa45c43f278eb78a1f68d947590c43affe42df8 (patch)
tree2aaf30b4fc96bbd36eefd33cfd53dd886e550aff /source/blender/editors/interface/interface_widgets.c
parent88e774aa34c8ffd90c7bc7e71d3bc290d78b4f2d (diff)
Cleanup: missing leading '*' from comment blocks
Diffstat (limited to 'source/blender/editors/interface/interface_widgets.c')
-rw-r--r--source/blender/editors/interface/interface_widgets.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/interface/interface_widgets.c b/source/blender/editors/interface/interface_widgets.c
index bcd945b21a9..d3481c449ac 100644
--- a/source/blender/editors/interface/interface_widgets.c
+++ b/source/blender/editors/interface/interface_widgets.c
@@ -2292,7 +2292,7 @@ static void widget_draw_extra_icons(const uiWidgetColors *wcol,
const float icon_size = ICON_SIZE_FROM_BUTRECT(rect);
/* Offset of icons from the right edge. Keep in sync
- with 'ui_but_extra_operator_icon_mouse_over_get'. */
+ * with 'ui_but_extra_operator_icon_mouse_over_get'. */
if (!BLI_listbase_is_empty(&but->extra_op_icons)) {
/* Eyeballed. */
rect->xmax -= 0.2 * icon_size;
@@ -2481,8 +2481,8 @@ static void widget_draw_text_icon(const uiFontStyle *fstyle,
}
else {
/* In case a separate text label and some other button are placed under each other,
- and the outline of the button does not contrast with the background.
- Add an offset (thickness of the outline) so that the text does not stick out visually. */
+ * and the outline of the button does not contrast with the background.
+ * Add an offset (thickness of the outline) so that the text does not stick out visually. */
if (but->drawflag & UI_BUT_TEXT_LEFT) {
rect->xmin += U.pixelsize;
}