patch for better drag&drop on linux #68
This commit is contained in:
parent
d4e1f8b779
commit
0ef289fdd8
|
@ -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;
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue