From a26120e69e26186454becc7658859224a4a3de2c Mon Sep 17 00:00:00 2001 From: Matthias Vogelgesang Date: Wed, 13 May 2015 12:39:18 +0200 Subject: Fix wrong place of write check caused by 453701edd --- plugins/file/uca-file-camera.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'plugins') diff --git a/plugins/file/uca-file-camera.c b/plugins/file/uca-file-camera.c index 26a590d..e450b34 100644 --- a/plugins/file/uca-file-camera.c +++ b/plugins/file/uca-file-camera.c @@ -205,6 +205,12 @@ uca_file_camera_set_property (GObject *object, guint property_id, const GValue * g_return_if_fail(UCA_IS_FILE_CAMERA(object)); UcaFileCameraPrivate *priv = UCA_FILE_CAMERA_GET_PRIVATE(object); + if (uca_camera_is_recording (UCA_CAMERA(object)) && + !uca_camera_is_writable_during_acquisition (UCA_CAMERA (object), pspec->name)) { + g_warning ("Property '%s' cant be changed during acquisition", pspec->name); + return; + } + switch (property_id) { case PROP_PATH: g_free (priv->path); @@ -227,11 +233,6 @@ uca_file_camera_get_property(GObject *object, guint property_id, GValue *value, g_return_if_fail (UCA_IS_FILE_CAMERA (object)); UcaFileCameraPrivate *priv = UCA_FILE_CAMERA_GET_PRIVATE (object); - if (uca_camera_is_recording(UCA_CAMERA(object)) && !uca_camera_is_writable_during_acquisition(UCA_CAMERA(object), pspec->name)) { - g_warning ("Property '%s' cant be changed during acquisition", pspec->name); - return; - } - switch (property_id) { case PROP_NAME: g_value_set_string (value, "file camera"); -- cgit v1.2.3