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:
Diffstat (limited to 'source/blender/windowmanager/intern/wm_dragdrop.c')
-rw-r--r--source/blender/windowmanager/intern/wm_dragdrop.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/source/blender/windowmanager/intern/wm_dragdrop.c b/source/blender/windowmanager/intern/wm_dragdrop.c
index 372ef107c15..3d519a5609b 100644
--- a/source/blender/windowmanager/intern/wm_dragdrop.c
+++ b/source/blender/windowmanager/intern/wm_dragdrop.c
@@ -1,5 +1,5 @@
/**
- * $Id:
+ * $Id$
*
* ***** BEGIN GPL LICENSE BLOCK *****
*
@@ -57,7 +57,6 @@
#include "wm_event_system.h"
#include "wm.h"
-#include "RNA_types.h"
/* ****************************************************** */
@@ -248,10 +247,10 @@ static void wm_drop_operator_draw(char *name, int x, int y)
{
int width= UI_GetStringWidth(name);
- glColor4ub(0, 0, 0, 128);
+ glColor4ub(0, 0, 0, 50);
- uiSetRoundBox(15);
- uiRoundBox(x, y, x + width + 8, y + 15, 7);
+ uiSetRoundBox(15+16);
+ uiRoundBox(x, y, x + width + 8, y + 15, 4);
glColor4ub(255, 255, 255, 255);
UI_DrawString(x+4, y+4, name);