eeeshow/gui-aoi.c (aoi_down): don't accept click on non-clickable AoI

This commit is contained in:
Werner Almesberger
2016-08-16 00:19:23 -03:00
parent b67f6b9a96
commit 0d975a57d0
+4
View File
@@ -146,6 +146,10 @@ bool aoi_down(const struct aoi *aois, int x, int y)
clicked = find_aoi(aois, x, y);
if (!clicked)
return 0;
if (!clicked->click) {
clicked = NULL;
return 0;
}
clicked_x = x;
clicked_y = y;