-
Notifications
You must be signed in to change notification settings - Fork 142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue with buttons on touch screen #159
Comments
I think the events are not getting updated after the press action. And since the following code is creating error. This might be the problem. |
Hi @sriranjanr, did you ever arrive at a solution to this problem (FYI @delaneyheileman)? |
import controlP5.*; ControlP5 cp5; void setup() { button = cp5.addButton("button") bgColor = color(255); void draw() { void mousePressed() { |
There is a problem with buttons on touch screen. I need to double press the button to make it work. I followed the guidelines in #34 and recompiled the library but now when I press a button it remains in the pressed state and deactivates all the UI as the button pressed does not get released.
The text was updated successfully, but these errors were encountered: