Skip to content

Commit 3a1780a

Browse files
authored
Fix name conflict, closes #8, thanks @lhwn5407
1 parent bcce677 commit 3a1780a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mouse_skin_obs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from types import SimpleNamespace as dot
44
from pynput.mouse import Controller # python -m pip install pynput
55

6-
__version__ = "2.1.0"
6+
__version__ = "2.1.1"
77
c = Controller()
88
get_position = lambda: c.position
99

@@ -271,7 +271,7 @@ def script_update(settings):
271271
PY_CURSOR.offset_y = S.obs_data_get_int(settings, "_offset_y")
272272

273273
PY_CURSOR.width = S.obs_data_get_int(settings, "_width")
274-
PY_CURSOR.width = S.obs_data_get_int(settings, "_height")
274+
PY_CURSOR.height = S.obs_data_get_int(settings, "_height")
275275
PY_CURSOR.browser_source_name = S.obs_data_get_string(settings, "browser")
276276
PY_CURSOR.is_update_browser = S.obs_data_get_bool(settings, "_is_update_browser")
277277
PY_CURSOR.use_lerp = S.obs_data_get_bool(settings, "_use_lerp")

0 commit comments

Comments
 (0)