diff options
author | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2015-05-13 12:38:16 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2015-05-13 12:38:16 +0200 |
commit | 9029cdcebd885d2e9bb1b3260c3c0f541c8743c9 (patch) | |
tree | f999606841a0c8073d2a1b56d0a3638a2e0da81e | |
parent | de1251bfa974fdee41877da5bd1d477162adf084 (diff) | |
download | libuca-9029cdcebd885d2e9bb1b3260c3c0f541c8743c9.tar.gz libuca-9029cdcebd885d2e9bb1b3260c3c0f541c8743c9.tar.bz2 libuca-9029cdcebd885d2e9bb1b3260c3c0f541c8743c9.tar.xz libuca-9029cdcebd885d2e9bb1b3260c3c0f541c8743c9.zip |
file: signal change of ROI and bitdepth
-rw-r--r-- | plugins/file/uca-file-camera.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/file/uca-file-camera.c b/plugins/file/uca-file-camera.c index 0553194..26a590d 100644 --- a/plugins/file/uca-file-camera.c +++ b/plugins/file/uca-file-camera.c @@ -210,6 +210,10 @@ uca_file_camera_set_property (GObject *object, guint property_id, const GValue * g_free (priv->path); priv->path = g_strdup (g_value_get_string (value)); update_fnames (priv, NULL); + + g_object_notify (object, "roi-width"); + g_object_notify (object, "roi-height"); + g_object_notify (object, "sensor-bitdepth"); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID(object, property_id, pspec); |