We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents df664ed + 47f406b commit 57c974fCopy full SHA for 57c974f
1 file changed
apps/files/js/files.js
@@ -481,6 +481,11 @@ var dragOptions={
481
$('.crumbmenu').removeClass('canDropChildren');
482
},
483
drag: function(event, ui) {
484
+ // Prevent scrolling when hovering .files-controls
485
+ if ($(event.originalEvent.target).parents('.files-controls').length > 0) {
486
+ return
487
+ }
488
+
489
/** @type {JQuery<HTMLDivElement>} */
490
const scrollingArea = FileList.$container;
491
0 commit comments