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>2003-12-01 16:13:43 +0300
committerTon Roosendaal <ton@blender.org>2003-12-01 16:13:43 +0300
commite35ed554378396867b562fb47416e49b8c1eea28 (patch)
tree6bad024b22f7f2f32145da127dd8bd888fd4f3c0 /source/blender/src/editscreen.c
parent3489a56a32d1dc3eec5c793cc67165f1cfb3a138 (diff)
- added fix done for manual designer: when you want to make screenshot with
a pulldown or popup menu in it, press (alt+)ctrl+f3 while the menu is visible, ESC, press (alt+)ctrl+f3 again. Note the (alt+) is for OSX users only.
Diffstat (limited to 'source/blender/src/editscreen.c')
-rw-r--r--source/blender/src/editscreen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editscreen.c b/source/blender/src/editscreen.c
index 9c32ff6d54f..6521713c75b 100644
--- a/source/blender/src/editscreen.c
+++ b/source/blender/src/editscreen.c
@@ -835,7 +835,7 @@ unsigned short extern_qread_ext(short *val, char *ascii)
else if(event==INPUTCHANGE) ext_inputchange= *val;
else if(event==MOUSEY || event==MOUSEX) ext_mousemove= 1;
else if((G.qual & (LR_CTRLKEY|LR_ALTKEY)) && event==F3KEY) {
- BIF_screendump();
+ if(*val) BIF_screendump();
}
return event;