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
|
||||
.pipe(
|
||||
debounceTime(150)
|
||||
debounceTime(1500)
|
||||
)
|
||||
.subscribe(() => {
|
||||
console.warn('disable drag');
|
||||
.subscribe(() => {
|
||||
this.drag = false;
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue