summaryrefslogtreecommitdiffstats
path: root/plugins/file/uca-file-camera.c
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2015-05-13 12:39:18 +0200
committerMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2015-05-13 12:39:18 +0200
commita26120e69e26186454becc7658859224a4a3de2c (patch)
tree14a6c70164745be1a8ea350474588689ee9f6461 /plugins/file/uca-file-camera.c
parent9029cdcebd885d2e9bb1b3260c3c0f541c8743c9 (diff)
downloaduca-a26120e69e26186454becc7658859224a4a3de2c.tar.gz
uca-a26120e69e26186454becc7658859224a4a3de2c.tar.bz2
uca-a26120e69e26186454becc7658859224a4a3de2c.tar.xz
uca-a26120e69e26186454becc7658859224a4a3de2c.zip
Fix wrong place of write check caused by 453701edd
Diffstat (limited to 'plugins/file/uca-file-camera.c')
-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");