summaryrefslogtreecommitdiffstats
path: root/src/ufo-fft-task.c
diff options
context:
space:
mode:
authorTomas Farago <sensej007@email.cz>2020-03-13 10:53:45 +0100
committerTomas Farago <sensej007@email.cz>2020-03-13 10:53:45 +0100
commit581a1b2cf040ca346a825ef5bfed6465ab3ea8d5 (patch)
tree3068240bb452d9c1dca3697e7ac3302c3c172976 /src/ufo-fft-task.c
parentad4df05de02c01b8b6cc0b9a9db5ba5003fcd8e8 (diff)
downloadufo-filters-581a1b2cf040ca346a825ef5bfed6465ab3ea8d5.tar.gz
ufo-filters-581a1b2cf040ca346a825ef5bfed6465ab3ea8d5.tar.bz2
ufo-filters-581a1b2cf040ca346a825ef5bfed6465ab3ea8d5.tar.xz
ufo-filters-581a1b2cf040ca346a825ef5bfed6465ab3ea8d5.zip
Increase property limits to 32768
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++)