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/src/drawimage.c')
-rw-r--r--source/blender/src/drawimage.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/src/drawimage.c b/source/blender/src/drawimage.c
index d63d4e5009c..01702cf9ffe 100644
--- a/source/blender/src/drawimage.c
+++ b/source/blender/src/drawimage.c
@@ -593,16 +593,16 @@ static void draw_image_view_icon(void)
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
if(G.sima->flag & SI_STICKYUVS) {
- BIF_draw_icon(xPos, 5.0, ICON_STICKY2_UVS);
+ BIF_icon_draw(xPos, 5.0, ICON_STICKY2_UVS);
xPos = 25.0;
}
else if(G.sima->flag & SI_LOCALSTICKY) {
- BIF_draw_icon(xPos, 5.0, ICON_STICKY_UVS);
+ BIF_icon_draw(xPos, 5.0, ICON_STICKY_UVS);
xPos = 25.0;
}
if(G.sima->flag & SI_SELACTFACE) {
- BIF_draw_icon(xPos, 5.0, ICON_DRAW_UVFACES);
+ BIF_icon_draw(xPos, 5.0, ICON_DRAW_UVFACES);
}
glBlendFunc(GL_ONE, GL_ZERO);