summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/file/uca-file-camera.c11
1 files changed, 6 insertions, 5 deletions
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");