summaryrefslogtreecommitdiffstats
path: root/src/ufo-fft-task.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ufo-fft-task.c')
-rw-r--r--src/ufo-fft-task.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ufo-fft-task.c b/src/ufo-fft-task.c
index f1e3978..b8356a4 100644
--- a/src/ufo-fft-task.c
+++ b/src/ufo-fft-task.c
@@ -341,21 +341,21 @@ ufo_fft_task_class_init (UfoFftTaskClass *klass)
g_param_spec_uint("size-x",
"Size of the FFT transform in x-direction",
"Size of the FFT transform in x-direction",
- 1, 8192, 1,
+ 1, 32768, 1,
G_PARAM_READWRITE);
properties[PROP_SIZE_Y] =
g_param_spec_uint("size-y",
"Size of the FFT transform in y-direction",
"Size of the FFT transform in y-direction",
- 1, 8192, 1,
+ 1, 32768, 1,
G_PARAM_READWRITE);
properties[PROP_SIZE_Z] =
g_param_spec_uint("size-z",
"Size of the FFT transform in z-direction",
"Size of the FFT transform in z-direction",
- 1, 8192, 1,
+ 1, 32768, 1,
G_PARAM_READWRITE);
for (guint i = PROP_0 + 1; i < N_PROPERTIES; i++)