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.
This commit is contained in:
Martin Poirier 2006-01-29 19:38:52 +00:00
parent 4b01aa7aa5
commit c23aadd1e4

@ -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;