From 952ff41eb8f183b80588a06a313bd10f94ace83e Mon Sep 17 00:00:00 2001 From: Dave Nicolson Date: Thu, 4 Dec 2025 18:12:23 +0100 Subject: [PATCH] Fix inquiry format buttons --- Application/CustomTypeViewController.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Application/CustomTypeViewController.swift b/Application/CustomTypeViewController.swift index 4ec12270..9ce01950 100644 --- a/Application/CustomTypeViewController.swift +++ b/Application/CustomTypeViewController.swift @@ -64,6 +64,10 @@ class DropSensor: NSView { registerForDraggedTypes(acceptableTypes) } + override func hitTest(_ point: NSPoint) -> NSView? { + return nil + } + override func draggingEntered(_ sender: NSDraggingInfo) -> NSDragOperation { self.dropDelegate?.enterDrag(sender) return .every