For disable Drag and Drop functionality add below code in "Script Editor".
GotoGo to Setting -> Edit Page -> Insert -> Web Part -> Media and Content -> Script Editor and refresh the library.
<script> ExecuteOrDelayUntilScriptLoaded(function() { g_uploadType = DragDropMode.NOTSUPPORTED; SPDragDropManager.DragDropMode = DragDropMode.NOTSUPPORTED; }, "DragDrop.js"); </script>
<script> ExecuteOrDelayUntilScriptLoaded(function() { g_uploadType = DragDropMode.NOTSUPPORTED; SPDragDropManager.DragDropMode = DragDropMode.NOTSUPPORTED; }, "DragDrop.js"); </script> ThatsThat's definitely works. I had tried.