Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.

My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
diff --git a/apps/gui/quickscreen.c b/apps/gui/quickscreen.c
index 639233b..402b1e2 100644
--- a/apps/gui/quickscreen.c
+++ b/apps/gui/quickscreen.c
@@ -286,24 +286,28 @@ static bool gui_quickscreen_do_button(struct gui_quickscreen * qs, int button)
     return true;
 }
 #ifdef HAVE_TOUCHSCREEN
-/* figure out which button was pressed...
- * top is exit, left/right/botton are the respective actions
- */
+/* figure out which button was pressed... */
+static bool xy_is_within_viewport(int x, int y, const struct viewport *vp)
+{
+    bool is_x = (x > vp->x && x < (vp->x + vp->width));
+    bool is_y = (y > vp->y && y < (vp->y + vp->height));
+    return (is_x && is_y);
+}
+
 static int quickscreen_touchscreen_button(const struct viewport
                                                     vps[QUICKSCREEN_ITEM_COUNT])
 {
     short x,y;
+    /* only hitting the text counts, everything else is exit */
     if (action_get_touchscreen_press(&x, &y) != BUTTON_REL)
         return ACTION_NONE;
-    if (y < vps[QUICKSCREEN_LEFT].y)
-        return ACTION_STD_CANCEL;
-    else if (y > vps[QUICKSCREEN_LEFT].y +
-                 vps[QUICKSCREEN_LEFT].height)
+    else if (xy_is_within_viewport(x,y,&vps[QUICKSCREEN_TOP]))
+        return ACTION_QS_TOP;
+    else if (xy_is_within_viewport(x,y,&vps[QUICKSCREEN_BOTTOM]))
         return ACTION_QS_DOWN;
-    else if (x < vps[QUICKSCREEN_LEFT].x +
-                 vps[QUICKSCREEN_LEFT].width)
+    else if (xy_is_within_viewport(x,y,&vps[QUICKSCREEN_LEFT]))
         return ACTION_QS_LEFT;
-    else if (x >= vps[QUICKSCREEN_RIGHT].x)
+    else if (xy_is_within_viewport(x,y,&vps[QUICKSCREEN_RIGHT]))
         return ACTION_QS_RIGHT;
     return ACTION_STD_CANCEL;
 }