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:
authorTon Roosendaal <ton@blender.org>2009-02-21 22:17:31 +0300
committerTon Roosendaal <ton@blender.org>2009-02-21 22:17:31 +0300
commitf2f734c9a5668e370253ff550de9a240bb142466 (patch)
tree0e1d5614150354f0a35694a2e0953ee2adb2e8cd /source/blender/editors/space_image
parent93c367dc29d1c3735b136664b3956fbc9d022799 (diff)
2.5
View3D: background image buttons back. Again nice to use blend or size or other sliders for live updates. :) Note that 'load' doesnt work yet, the operator for image load only does space-image now. Also note that with a built-in 4-split option, we can also encode a way to show 3 different pics.
Diffstat (limited to 'source/blender/editors/space_image')
-rw-r--r--source/blender/editors/space_image/image_panels.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_image/image_panels.c b/source/blender/editors/space_image/image_panels.c
index cfca3b04ff9..c0fe8afd036 100644
--- a/source/blender/editors/space_image/image_panels.c
+++ b/source/blender/editors/space_image/image_panels.c
@@ -1229,7 +1229,7 @@ static void uiblock_layer_pass_arrow_buttons(uiBlock *block, RenderResult *rr, I
static int packdummy=0;
/* The general Image panel with the loadsa callbacks! */
-void uiblock_image_panel(const bContext *C, uiBlock *block, Image **ima_pp, ImageUser *iuser,
+void ED_image_uiblock_panel(const bContext *C, uiBlock *block, Image **ima_pp, ImageUser *iuser,
short redraw, short imagechanged)
{
Scene *scene= CTX_data_scene(C);
@@ -1410,7 +1410,7 @@ static void image_panel_properties(const bContext *C, ARegion *ar)
uiBlockSetHandleFunc(block, do_image_panel_events, NULL);
/* note, it draws no bottom half in facemode, for vertex buttons */
- uiblock_image_panel(C, block, &sima->image, &sima->iuser, B_REDR, B_REDR);
+ ED_image_uiblock_panel(C, block, &sima->image, &sima->iuser, B_REDR, B_REDR);
image_editvertex_buts(C, block);
uiEndBlock(C, block);