Prefer files when handling paste event
This commit is contained in:
parent
a6a838a673
commit
1020857c78
1 changed files with 6 additions and 3 deletions
|
@ -56,11 +56,14 @@ export class SignalClipboard {
|
|||
const signal = event.clipboardData.getData('text/signal');
|
||||
|
||||
const clipboardContainsFiles = event.clipboardData.files?.length > 0;
|
||||
if (!clipboardContainsFiles) {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
|
||||
if (clipboardContainsFiles) {
|
||||
return;
|
||||
}
|
||||
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
|
||||
if (selection == null) {
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue