diff options
author | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2013-07-26 09:30:46 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2013-07-26 09:30:46 +0200 |
commit | c32a444926402c33c1cd04dc688fa744c8d187db (patch) | |
tree | 6109b15ea1c3f4c62552b457332a734da437faf4 /bin/gui/control.c | |
parent | dcf221639845ddcabc76eb0a4da1cd347a646c1b (diff) | |
download | libuca-c32a444926402c33c1cd04dc688fa744c8d187db.tar.gz libuca-c32a444926402c33c1cd04dc688fa744c8d187db.tar.bz2 libuca-c32a444926402c33c1cd04dc688fa744c8d187db.tar.xz libuca-c32a444926402c33c1cd04dc688fa744c8d187db.zip |
Do not restrict number of acuqisitions
Diffstat (limited to 'bin/gui/control.c')
-rw-r--r-- | bin/gui/control.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/gui/control.c b/bin/gui/control.c index 75752cc..b210e16 100644 --- a/bin/gui/control.c +++ b/bin/gui/control.c @@ -719,6 +719,8 @@ create_main_window (GtkBuilder *builder, const gchar* camera_name) gtk_adjustment_set_value (max_bin_adjustment, pow (2, bits_per_sample) - 1); + gtk_adjustment_set_upper (td.count, (gdouble) G_MAXULONG); + g_message ("Allocated memory for %d frames", n_frames); td.pixel_size = pixel_size; |