From 84284599d8b66beb5aa75998e89faa8e127a2ff6 Mon Sep 17 00:00:00 2001 From: pietervdvn Date: Thu, 14 Oct 2021 17:39:31 +0200 Subject: [PATCH] Fix cursor-wait on gps location button --- Logic/Actors/GeoLocationHandler.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Logic/Actors/GeoLocationHandler.ts b/Logic/Actors/GeoLocationHandler.ts index 43ce441d7..86e656b50 100644 --- a/Logic/Actors/GeoLocationHandler.ts +++ b/Logic/Actors/GeoLocationHandler.ts @@ -141,6 +141,8 @@ export default class GeoLocationHandler extends VariableUiElement { [this._hasLocation] ); currentPointer.addCallbackAndRun((pointerClass) => { + self.RemoveClass("cursor-wait") + self.RemoveClass("cursor-pointer") self.SetClass(pointerClass); });