Closed GoogleCodeExporter closed 9 years ago
Original comment by andre....@gmail.com
on 16 Apr 2009 at 11:16
Original comment by andre....@gmail.com
on 17 Apr 2009 at 3:22
Original comment by andre....@gmail.com
on 18 Apr 2009 at 8:39
I tested this in the latest branch and the solution is quite simple although it
took
me a little while to track down. The SDK_KEYDOWN case doesn't have a break.
Thus,
if any character (including ctrl) is pressed, the default case will occur which
will
break out of the switch(e.key.keysym.sym). However it will fall through to the
SDL_MOUSEMOTION which will put a bogus value in x and/or y.
Thus
}
break;
case SDL_MOUSEMOTION:
if(developer) {
should be added to presenter.c
Original comment by CHWoi...@gmail.com
on 21 Apr 2009 at 12:01
Sorry...a correction to the previous statement...it will fall through if any
non-supported character is pressed
Original comment by CHWoi...@gmail.com
on 21 Apr 2009 at 12:03
Righ!
Original comment by andre....@gmail.com
on 21 Apr 2009 at 12:49
Done in 0.2.3.
Original comment by andre....@gmail.com
on 21 Apr 2009 at 1:15
Original issue reported on code.google.com by
andre....@gmail.com
on 12 Apr 2009 at 4:37