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 <campbell@blender.org>2022-04-05 00:51:48 +0300
committerCampbell Barton <campbell@blender.org>2022-04-05 01:01:46 +0300
commitb51d6d50688e653d42c3ca8566df2f9518c462e3 (patch)
treea32ddadf99c1b09e5d4532c6930d684bc6859ec2 /source/blender/editors/space_node/node_draw.cc
parent744369c1144ec4c4685732e6fb06ba7b9513de41 (diff)
Cleanup: clang-format
Also add space below file references.
Diffstat (limited to 'source/blender/editors/space_node/node_draw.cc')
-rw-r--r--source/blender/editors/space_node/node_draw.cc16
1 files changed, 14 insertions, 2 deletions
diff --git a/source/blender/editors/space_node/node_draw.cc b/source/blender/editors/space_node/node_draw.cc
index 68cfd1c9ef0..88ab7617932 100644
--- a/source/blender/editors/space_node/node_draw.cc
+++ b/source/blender/editors/space_node/node_draw.cc
@@ -2579,8 +2579,20 @@ static void reroute_node_draw(
const int x = BLI_rctf_cent_x(&node.totr) - (width / 2);
const int y = node.totr.ymax;
- uiBut *label_but = uiDefBut(
- &block, UI_BTYPE_LABEL, 0, showname, x, y, width, (short)NODE_DY, nullptr, 0, 0, 0, 0, nullptr);
+ uiBut *label_but = uiDefBut(&block,
+ UI_BTYPE_LABEL,
+ 0,
+ showname,
+ x,
+ y,
+ width,
+ (short)NODE_DY,
+ nullptr,
+ 0,
+ 0,
+ 0,
+ 0,
+ nullptr);
UI_but_drawflag_disable(label_but, UI_BUT_TEXT_LEFT);
}