summaryrefslogtreecommitdiff
path: root/packaging
diff options
context:
space:
mode:
authorMarcus Meissner <marcus@jet.franken.de>2016-11-20 22:40:03 +0100
committerMarcus Meissner <marcus@jet.franken.de>2016-11-20 22:40:03 +0100
commit232e18b1aabbf7667ff7c6696ed98952a08fce08 (patch)
treeec285882ff2e82ef44ecdc1a72afbfdc4569b255 /packaging
parent541571382ae011f4d04f1d5d2ce3cea12ef3b3a2 (diff)
downloadlibgphoto2-232e18b1aabbf7667ff7c6696ed98952a08fce08.tar.gz
print trigger capture flag
Diffstat (limited to 'packaging')
-rw-r--r--packaging/generic/print-camera-list.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/packaging/generic/print-camera-list.c b/packaging/generic/print-camera-list.c
index 498086545..dc3599131 100644
--- a/packaging/generic/print-camera-list.c
+++ b/packaging/generic/print-camera-list.c
@@ -1348,6 +1348,11 @@ html_camera_func (
op &= ~GP_OPERATION_CAPTURE_IMAGE;
if (op) printf (", ");
}
+ if (op & GP_OPERATION_TRIGGER_CAPTURE) {
+ printf ("Trigger Capture");
+ op &= ~GP_OPERATION_TRIGGER_CAPTURE;
+ if (op) printf (", ");
+ }
if (op & GP_OPERATION_CAPTURE_PREVIEW) {
printf ("Liveview");
op &= ~GP_OPERATION_CAPTURE_PREVIEW;