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:
authorMartin Poirier <theeth@yahoo.com>2006-01-29 22:38:52 +0300
committerMartin Poirier <theeth@yahoo.com>2006-01-29 22:38:52 +0300
commitc23aadd1e4bebce7a355e13f63655c8bf368568b (patch)
treef1673b9b12951895f7f8bf89ac2138fc3cf19a98 /source/blender/src/toets.c
parent4b01aa7aa57d144baf1739e4bcd65716f95dabfd (diff)
Bug #3837
A commented if in toets.c for flipping the render buffer prevented the propagation of the keypress to handler in space.c Ton: I added a temporary check for no qualifier but it's missing a test for an opened render window.
Diffstat (limited to 'source/blender/src/toets.c')
-rw-r--r--source/blender/src/toets.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/src/toets.c b/source/blender/src/toets.c
index 0770c05cff5..9c3957a6fab 100644
--- a/source/blender/src/toets.c
+++ b/source/blender/src/toets.c
@@ -684,10 +684,11 @@ int blenderqread(unsigned short event, short val)
break;
case JKEY:
if(textediting==0 && textspace==0) {
-// if(R.rectot && G.qual==0) {
+ /* NEED CHECK FOR RENDER WINDOW HERE */
+ if (G.qual==0) {
BIF_swap_render_rects();
return 0;
-// }
+ }
}
break;