Hey, I am using LibGDX’s Scene 2D and have added in a SelectBox. However when ever I click on it to select it the whole screen flashes
A Gif (Hopefully this shows you what I mean)
Edit: To see it better go to http://gyazo.com/adf1aefaa51413aadc49df96fd6daba0 and click on mp4
The code:
SelectBox engines = new SelectBox(new String[] { "Basic Engines", "Advanced Engines", "Advanced Engines" }, Game.ui.skin);
engines.setPosition(20, getHeight() - 240);
engines.setSize(250, 40);
addActor(engines);
Does anyone know how to stop this as it is annoying and looks odd.
Thanks in advance !