From 340ee05443a413ed9ef577516507c34c220ed7da Mon Sep 17 00:00:00 2001 From: Tamius Han Date: Wed, 15 Jun 2022 00:53:43 +0200 Subject: [PATCH] fix pointer events --- src/ext/lib/uwui/UI.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ext/lib/uwui/UI.js b/src/ext/lib/uwui/UI.js index 651f517..e54eaba 100644 --- a/src/ext/lib/uwui/UI.js +++ b/src/ext/lib/uwui/UI.js @@ -35,7 +35,7 @@ class UI { rootDiv.style.zIndex = "1000"; rootDiv.style.border = 0; rootDiv.style.top = 0; - // rootDiv.style.pointerEvents = 'none'; + rootDiv.style.pointerEvents = 'none'; if (this.uiConfig?.parentElement) { this.uiConfig.parentElement.appendChild(rootDiv);