mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-14 07:04:47 -04:00
🎯 Hotspots fixed
This commit is contained in:
parent
73c57c7f45
commit
09f36540f3
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue