...
This commit is contained in:
parent
89ee128a92
commit
8d8d89573c
1 changed files with 2 additions and 2 deletions
|
|
@ -1486,11 +1486,11 @@ def paste_with_actions(self, text: str) -> None:
|
|||
return
|
||||
self.paste_text(btext)
|
||||
|
||||
def handle_dangerous_paste_confirmation(self, btext: bytes, sanitized: str, choice: str) -> None:
|
||||
def handle_dangerous_paste_confirmation(self, unsanitized: bytes, sanitized: str, choice: str) -> None:
|
||||
if choice == 's':
|
||||
self.paste_text(sanitized)
|
||||
elif choice == 'p':
|
||||
self.paste_text(btext)
|
||||
self.paste_text(unsanitized)
|
||||
|
||||
def handle_large_paste_confirmation(self, btext: bytes, confirmed: bool) -> None:
|
||||
if confirmed:
|
||||
|
|
|
|||
Loading…
Reference in a new issue