Skip to content

Commit

Permalink
settings: finish change to new constants
Browse files Browse the repository at this point in the history
  • Loading branch information
pfps committed Jun 13, 2024
1 parent db93e9a commit abf7665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/logitech_receiver/settings_templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ def release_action(self):
if logger.isEnabledFor(logging.INFO):
logger.info("mouse gesture notification %s", self.data)
payload = struct.pack("!" + (len(self.data) * "h"), *self.data)
notification = base._HIDPP_Notification(0, 0, 0, 0, payload)
notification = base.HIDPPNotification(0, 0, 0, 0, payload)
diversion.process_notification(self.device, notification, _F.MOUSE_GESTURE)
self.fsmState = "idle"

Expand Down

0 comments on commit abf7665

Please sign in to comment.