v1.1.0
This commit is contained in:
parent
cf54a4733f
commit
5e449cdd94
12 changed files with 53 additions and 19 deletions
|
|
@ -12,7 +12,12 @@ def copy_selection_to_clipboard(app: App) -> None:
|
|||
continue
|
||||
|
||||
selection = widget.text_selection
|
||||
result = widget.get_selection(selection)
|
||||
|
||||
try:
|
||||
result = widget.get_selection(selection)
|
||||
except Exception:
|
||||
continue
|
||||
|
||||
if not result:
|
||||
continue
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue