CleanUp: Renamed drawnodespace -> node_draw_space

This commit is contained in:
Jeroen Bakker 2020-10-02 11:41:13 +02:00
parent 63f525bae3
commit 01698caa66
3 changed files with 3 additions and 3 deletions

View File

@ -1713,7 +1713,7 @@ static void draw_group_overlay(const bContext *C, ARegion *region)
UI_block_end(C, block);
}
void drawnodespace(const bContext *C, ARegion *region)
void node_draw_space(const bContext *C, ARegion *region)
{
wmWindow *win = CTX_wm_window(C);
SpaceNode *snode = CTX_wm_space_node(C);

View File

@ -88,7 +88,7 @@ void node_draw_nodetree(const struct bContext *C,
struct SpaceNode *snode,
struct bNodeTree *ntree,
bNodeInstanceKey parent_key);
void drawnodespace(const bContext *C, ARegion *region);
void node_draw_space(const bContext *C, ARegion *region);
void node_set_cursor(struct wmWindow *win, struct SpaceNode *snode, float cursor[2]);
/* DPI scaled coords */

View File

@ -627,7 +627,7 @@ static void node_main_region_init(wmWindowManager *wm, ARegion *region)
static void node_main_region_draw(const bContext *C, ARegion *region)
{
drawnodespace(C, region);
node_draw_space(C, region);
}
/* ************* dropboxes ************* */