From 09f36540f33a046943a8c583478bf7088e74b2d0 Mon Sep 17 00:00:00 2001 From: ful1e5 <24286590+ful1e5@users.noreply.github.com> Date: Sun, 31 Jan 2021 18:22:23 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=AF=20Hotspots=20fixed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- builder/applbuild/configure.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builder/applbuild/configure.py b/builder/applbuild/configure.py index 5e107d6..055fef9 100644 --- a/builder/applbuild/configure.py +++ b/builder/applbuild/configure.py @@ -19,8 +19,8 @@ def get_config(bitmaps_dir: LikePath) -> Dict[str, Any]: config: Dict[str, Any] = {} for key, item in X_CURSORS_CFG.items(): - x_hot: int = item.get("x_hot", 0) - y_hot: int = item.get("y_hot", 0) + x_hot: int = item.get("xhot", 0) + y_hot: int = item.get("yhot", 0) hotspot: Tuple[int, int] = (x_hot, y_hot) delay: int = item.get("delay", X_DELAY)