diff options
Diffstat (limited to 'macosx/HBController.m')
-rw-r--r-- | macosx/HBController.m | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/macosx/HBController.m b/macosx/HBController.m index 776e78302..7dfa61709 100644 --- a/macosx/HBController.m +++ b/macosx/HBController.m @@ -196,6 +196,7 @@ // Register HBController's Window as a receiver for files/folders drag & drop operations [self.window registerForDraggedTypes:@[NSFilenamesPboardType]]; + [fMainTabView registerForDraggedTypes:@[NSFilenamesPboardType]]; // Set up the preset drawer fPresetsView = [[HBPresetsViewController alloc] initWithPresetManager:presetManager]; @@ -251,6 +252,11 @@ return fileURLs.count ? NSDragOperationGeneric : NSDragOperationNone; } +- (BOOL)prepareForDragOperation:(id<NSDraggingInfo>)sender +{ + return YES; +} + - (BOOL)performDragOperation:(id <NSDraggingInfo>)sender { NSArray<NSURL *> *fileURLs = [self fileURLsFromPasteboard:[sender draggingPasteboard]]; |