diff options
author | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-06-14 12:30:46 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-06-14 12:42:49 +0200 |
commit | 4ac809d49d7ad0e4b50e16cbdca1951f935c3681 (patch) | |
tree | 268c8cc1b026841881ae8cd5eb51056c31069cc8 /src/uca-camera.c | |
parent | f6f1407d38e348e62199a8735b98beda18d3c976 (diff) | |
download | libuca-4ac809d49d7ad0e4b50e16cbdca1951f935c3681.tar.gz libuca-4ac809d49d7ad0e4b50e16cbdca1951f935c3681.tar.bz2 libuca-4ac809d49d7ad0e4b50e16cbdca1951f935c3681.tar.xz libuca-4ac809d49d7ad0e4b50e16cbdca1951f935c3681.zip |
Fix LU-8
Override default values for ROI size, cooling point and pixel rate.
Diffstat (limited to 'src/uca-camera.c')
-rw-r--r-- | src/uca-camera.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uca-camera.c b/src/uca-camera.c index 5844eef..9fa1c2c 100644 --- a/src/uca-camera.c +++ b/src/uca-camera.c @@ -238,14 +238,14 @@ static void uca_camera_class_init(UcaCameraClass *klass) g_param_spec_uint(uca_camera_props[PROP_ROI_X], "Horizontal coordinate", "Horizontal coordinate", - 0, G_MAXUINT, 1, + 0, G_MAXUINT, 0, G_PARAM_READWRITE); camera_properties[PROP_ROI_Y] = g_param_spec_uint(uca_camera_props[PROP_ROI_Y], "Vertical coordinate", "Vertical coordinate", - 0, G_MAXUINT, 1, + 0, G_MAXUINT, 0, G_PARAM_READWRITE); camera_properties[PROP_ROI_WIDTH] = |