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/editors/util/ed_util.c')
-rw-r--r--source/blender/editors/util/ed_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/util/ed_util.c b/source/blender/editors/util/ed_util.c
index 9dca9350754..5623e538eb4 100644
--- a/source/blender/editors/util/ed_util.c
+++ b/source/blender/editors/util/ed_util.c
@@ -48,7 +48,7 @@
#include "ED_sculpt.h"
#include "ED_util.h"
-#include "UI_text.h"
+#include "UI_interface.h"
/* ********* general editor util funcs, not BKE stuff please! ********* */
@@ -115,7 +115,7 @@ int GetButStringLength(char *str)
{
int rt;
- rt= UI_GetStringWidth(G.font, str, (U.transopts & USER_TR_BUTTONS));
+ rt= UI_GetStringWidth(str);
return rt + 15;
}