Skip to content

Commit

Permalink
chore: fix last_moved type
Browse files Browse the repository at this point in the history
  • Loading branch information
gnikit committed Nov 17, 2024
1 parent c13afbd commit 55d2529
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tktooltip/tooltip.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def __init__(
self.y_offset = y_offset
# visibility status of the ToolTip inside|outside|visible
self.status = ToolTipStatus.OUTSIDE
self.last_moved = 0
self.last_moved = 0.0
# use Message widget to host ToolTip
self.message_kwargs: dict = self.DEFAULT_MESSAGE_KWARGS.copy()
self.message_kwargs.update(message_kwargs)
Expand Down

0 comments on commit 55d2529

Please sign in to comment.