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>2020-02-15 02:45:46 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-02-15 02:45:46 +0300
commitfa4ab69abf5750857e0b79295b13efa73aef0766 (patch)
tree90f81a992f006eb470a9c01033f740ae6e065c2e /source/blender/editors/space_node
parent92a56bbe6a985905ab748c29f57ab89977e83f9f (diff)
Cleanup: mixed camel/snake case
Diffstat (limited to 'source/blender/editors/space_node')
-rw-r--r--source/blender/editors/space_node/node_draw.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/editors/space_node/node_draw.c b/source/blender/editors/space_node/node_draw.c
index 4627f233720..7c64255380b 100644
--- a/source/blender/editors/space_node/node_draw.c
+++ b/source/blender/editors/space_node/node_draw.c
@@ -1341,14 +1341,14 @@ static void node_draw_hidden(const bContext *C,
GPU_blend(true);
GPU_line_smooth(true);
- UI_draw_roundbox_3fvAlpha(false,
- rct->xmin + 1,
- rct->ymin + 1,
- rct->xmax - 1,
- rct->ymax - 1,
- hiddenrad,
- node->color,
- 1.0f);
+ UI_draw_roundbox_3fv_alpha(false,
+ rct->xmin + 1,
+ rct->ymin + 1,
+ rct->xmax - 1,
+ rct->ymax - 1,
+ hiddenrad,
+ node->color,
+ 1.0f);
GPU_line_smooth(false);
GPU_blend(false);