From 19c348446903d7d5c9005519694cd3944ba7eced Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Fri, 13 Mar 2020 19:19:29 -0700 Subject: [PATCH] Fixed slow enumeration when Apple Cinema HD display 30" is plugged in --- src/hidapi/windows/hid.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/hidapi/windows/hid.c b/src/hidapi/windows/hid.c index b76b91b0b34ce..5cea24f5c614e 100644 --- a/src/hidapi/windows/hid.c +++ b/src/hidapi/windows/hid.c @@ -325,6 +325,12 @@ int hid_blacklist(unsigned short vendor_id, unsigned short product_id) return 1; } + // Apple Cinema HD display 30" - takes a long time to return the product string + if ( vendor_id == 0x05AC && product_id == 0x9220 ) + { + return 1; + } + return 0; }