Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/textual/pilot.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ async def double_click(
True if no selector was specified or if the clicks landed on the selected
widget, False otherwise.
"""
await self.click(widget, offset, shift, meta, control, times=2)
return await self.click(widget, offset, shift, meta, control, times=2)

async def triple_click(
self,
Expand Down Expand Up @@ -332,7 +332,7 @@ async def triple_click(
True if no selector was specified or if the clicks landed on the selected
widget, False otherwise.
"""
await self.click(widget, offset, shift, meta, control, times=3)
return await self.click(widget, offset, shift, meta, control, times=3)

async def hover(
self,
Expand Down
Loading