patch for better drag&drop on linux #68

This commit is contained in:
Nicolas Constant 2019-04-09 22:07:13 -04:00
parent d4e1f8b779
commit 0ef289fdd8
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
1 changed files with 2 additions and 3 deletions

View File

@ -63,10 +63,9 @@ export class AppComponent implements OnInit, OnDestroy {
this.dragoverSub = this.dragoverSubject this.dragoverSub = this.dragoverSubject
.pipe( .pipe(
debounceTime(150) debounceTime(1500)
) )
.subscribe(() => { .subscribe(() => {
console.warn('disable drag');
this.drag = false; this.drag = false;
}) })
} }