You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Podcast Addict is developed by Xavier Guillemane and can be downloaded on Google Play Store: https://play.google.com/store/apps/details?id=com.bambuna.podcastaddict&hl=en_US&gl=US
6
-
6
+
7
7
How to use intents to control Podcast Addict: https://podcastaddict.com/faq/130
8
8
*/
9
9
@@ -20,7 +20,7 @@ let gfx = function() {
20
20
// g.drawString(str, x, y, solid)
21
21
g.clearRect(R);
22
22
g.reset();
23
-
23
+
24
24
if(dark){g.setColor(0xFD20);}else{g.setColor(0xF800);}// Orange on dark theme, RED on light theme.
25
25
g.setFont("4x6:2");
26
26
g.setFontAlign(1,0,0);
@@ -56,7 +56,7 @@ let touchHandler = function(_, xy) {
56
56
letx=xy.x;
57
57
lety=xy.y;
58
58
letlen=(R.w<R.h+1)?(R.w/3):(R.h/3);
59
-
59
+
60
60
// doing a<b+1 seemed faster than a<=b, also using a>b-1 instead of a>=b.
61
61
if((R.x-1<x&&x<R.x+len)&&(R.y-1<y&&y<R.y+len)){
62
62
//Menu
@@ -65,20 +65,20 @@ let touchHandler = function(_, xy) {
0 commit comments