From f7ccedc0319587690e683a07f08d9c5014d0aec2 Mon Sep 17 00:00:00 2001 From: Tag Date: Wed, 5 Oct 2022 12:59:30 -0700 Subject: [PATCH] Crosshairs on roster if delayed --- package.nw/lib/roster.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package.nw/lib/roster.js b/package.nw/lib/roster.js index e6031fb8..fe2d75f5 100644 --- a/package.nw/lib/roster.js +++ b/package.nw/lib/roster.js @@ -326,11 +326,16 @@ function rosterInFocus() if (window.opener.g_appSettings.rosterDelayOnFocus) { rosterFocus = true; + RosterTable.style.cursor = "crosshair"; } } function rosterNoFocus() { + if (rosterFocus) + { + RosterTable.style.cursor = "auto"; + } rosterFocus = false; if (rosterTimeout != null) {