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:
authorJoshua Leung <aligorith@gmail.com>2007-05-25 15:14:58 +0400
committerJoshua Leung <aligorith@gmail.com>2007-05-25 15:14:58 +0400
commit810867b6d8d68bc6205dd5d00faf43c456c4be4f (patch)
tree24b3163a979cb2687d2a3cc7342e6d8688f16813 /source/blender
parent1f3d1b10f036b38df13ecbe57914738caa904863 (diff)
'Hack' to fix bug #6718:
The Outliner didn't refresh after adding loading a new image from disk for use as an image texture.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/src/buttons_shading.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/src/buttons_shading.c b/source/blender/src/buttons_shading.c
index 0ae601c074b..32a8245785b 100644
--- a/source/blender/src/buttons_shading.c
+++ b/source/blender/src/buttons_shading.c
@@ -199,6 +199,7 @@ static void load_image_cb(char *str, void *ima_pp_v, void *iuser_v) /* called fr
if(GS(tex->id.name)==ID_TE) {
BIF_preview_changed(ID_TE);
allqueue(REDRAWBUTSSHADING, 0);
+ allqueue(REDRAWOOPS, 0);
}
}
}