spaces->tabs

This commit is contained in:
Pablo Vazquez
2013-03-22 13:53:58 +00:00
parent a00eda0835
commit 1d68c28541

View File

@@ -976,17 +976,17 @@ static void node_draw_hidden(const bContext *C, ARegion *ar, SpaceNode *snode, b
glDisable(GL_BLEND);
}
/* custom color inline */
if (node->flag & NODE_CUSTOM_COLOR) {
glEnable(GL_BLEND);
glEnable(GL_LINE_SMOOTH);
/* custom color inline */
if (node->flag & NODE_CUSTOM_COLOR) {
glEnable(GL_BLEND);
glEnable(GL_LINE_SMOOTH);
glColor3fv(node->color);
uiDrawBox(GL_LINE_LOOP, rct->xmin + 1, rct->ymin + 1, rct->xmax -1, rct->ymax - 1, hiddenrad);
glColor3fv(node->color);
uiDrawBox(GL_LINE_LOOP, rct->xmin + 1, rct->ymin + 1, rct->xmax -1, rct->ymax - 1, hiddenrad);
glDisable(GL_LINE_SMOOTH);
glDisable(GL_BLEND);
}
glDisable(GL_LINE_SMOOTH);
glDisable(GL_BLEND);
}
/* title */
if (node->flag & SELECT)