From 0d2b455ced25d56db734e6d180d56545be2def38 Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Mon, 24 Apr 2023 11:06:58 +0200 Subject: allow trigger capture for panasonic --- camlibs/ptp2/library.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/camlibs/ptp2/library.c b/camlibs/ptp2/library.c index fd5c7f1a4..85806f41a 100644 --- a/camlibs/ptp2/library.c +++ b/camlibs/ptp2/library.c @@ -3021,6 +3021,11 @@ camera_abilities (CameraAbilitiesList *list) (strstr(models[i].model,"EOS") || strstr(models[i].model,"Rebel")) ) a.operations |= GP_OPERATION_TRIGGER_CAPTURE; + + /* Enable for Panasonic */ + if (models[i].usb_vendor == 0x04da) + a.operations |= GP_OPERATION_TRIGGER_CAPTURE; + /* Sony Alpha are also trigger capture capable */ if ( models[i].usb_vendor == 0x54c) a.operations |= GP_OPERATION_TRIGGER_CAPTURE; -- cgit v1.2.1