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>2006-05-12 19:17:24 +0400
committerTon Roosendaal <ton@blender.org>2006-05-12 19:17:24 +0400
commit3b9e0e65d20b04b3b37cf7746c12d7f3855ed774 (patch)
treec26eadb74a1f2c43670984b8b4bebc415fe8d3ea /source/blender/src/header_image.c
parent24c08a722e2ea67f3eb68b2a25e09d1c9426e569 (diff)
Compositor: Pressing Rkey now gives a popup for OK, and then will read in
all RenderResult nodes (when "Save Buffers" used) at once. Before it only read 1 Scene... not too useful. Also: added wait-cursor for saving images in UV/Image Editor.
Diffstat (limited to 'source/blender/src/header_image.c')
-rw-r--r--source/blender/src/header_image.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/src/header_image.c b/source/blender/src/header_image.c
index fd3e69ce929..6c16e8ac697 100644
--- a/source/blender/src/header_image.c
+++ b/source/blender/src/header_image.c
@@ -184,6 +184,7 @@ static void save_paint(char *name)
BLI_convertstringcode(str, G.sce, G.scene->r.cfra);
if (saveover(str)) {
+ waitcursor(1);
if (BKE_write_ibuf(ima->ibuf, str, G.scene->r.imtype, G.scene->r.subimtype, G.scene->r.quality)) {
BLI_strncpy(ima->name, name, sizeof(ima->name));
ima->ibuf->userflags &= ~IB_BITMAPDIRTY;
@@ -192,6 +193,7 @@ static void save_paint(char *name)
} else {
error("Couldn't write image: %s", str);
}
+ waitcursor(0);
}
}
}