From 2590c89f311ea9749980aa291ee1ea613b885416 Mon Sep 17 00:00:00 2001 From: Leonard Ritter Date: Sat, 18 Oct 2014 12:53:17 +0200 Subject: [PATCH] node box: don't draw arrow by default --- blendish.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/blendish.h b/blendish.h index 350e498..869a9fc 100644 --- a/blendish.h +++ b/blendish.h @@ -1746,9 +1746,11 @@ void bndNodeBackground(NVGcontext *ctx, float x, float y, float w, float h, bndOutlineBox(ctx,x,y,w,h+1, BND_NODE_RADIUS,BND_NODE_RADIUS,BND_NODE_RADIUS,BND_NODE_RADIUS, bndTransparent(borderColor)); + /* bndNodeArrowDown(ctx, x + BND_NODE_MARGIN_SIDE, y + BND_NODE_TITLE_HEIGHT-4, BND_NODE_ARROW_SIZE, arrowColor); + */ bndDropShadow(ctx,x,y,w,h,BND_NODE_RADIUS, BND_SHADOW_FEATHER,BND_SHADOW_ALPHA); }