From 53cb6d8126e18ad46a44ed376f34b54df78f6dc1 Mon Sep 17 00:00:00 2001 From: Martin Boonk Date: Tue, 25 Jul 2023 22:24:50 +0200 Subject: [PATCH] iconlaunch - Add jit marker to drawItem and drawText --- apps/iconlaunch/app.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/iconlaunch/app.js b/apps/iconlaunch/app.js index c744759ac..03e743885 100644 --- a/apps/iconlaunch/app.js +++ b/apps/iconlaunch/app.js @@ -56,6 +56,7 @@ let texted; let drawItem = function(itemI, r) { + "jit"; let x = whitespace; let i = itemI * appsN - 1; let selectedApp; @@ -89,6 +90,7 @@ }; let drawText = function(i, appY, selectedApp) { + "jit"; const idy = (selectedItem - (selectedItem % 3)) / 3; if (i != idy) return; appY = appY + itemSize/2;