Skip to content

Commit

Permalink
gsuiPatterns: change args returned by libraryBufferDropped
Browse files Browse the repository at this point in the history
  • Loading branch information
mr21 committed Feb 13, 2024
1 parent 410f633 commit d19ef2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gsuiPatterns/gsuiPatterns.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ class gsuiPatterns extends gsui0ne {
const locBufId = e.dataTransfer.getData( "library-buffer:local" );

if ( defBufId ) {
this.$dispatch( "libraryBufferDropped", "default", defBufId );
this.$dispatch( "libraryBufferDropped", "library-buffer:default", defBufId );
} else if ( locBufId ) {
this.$dispatch( "libraryBufferDropped", "local", locBufId );
this.$dispatch( "libraryBufferDropped", "library-buffer:local", locBufId );
}
};
this.$elements.lists.synth.ondragover = e => {
Expand Down

0 comments on commit d19ef2e

Please sign in to comment.