Prevent activating cards in hand when flicking up at bottom of Dev menu

This commit is contained in:
drdev
2015-04-20 13:57:37 +00:00
parent 586cb90697
commit e7ddc92a3f

View File

@@ -71,6 +71,11 @@ public abstract class FDropDown extends FScrollPane {
return true; //prevent objects behind drop down handling long press
}
@Override
public boolean flick(float x, float y) {
return true; //prevent objects behind drop down handling flick
}
@Override
public void setVisible(boolean visible0) {
if (isVisible() == visible0) { return; }