summaryrefslogtreecommitdiffstats
path: root/src/ufo-buffer-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-buffer-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-buffer-task.c')
-rw-r--r--src/ufo-buffer-task.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ufo-buffer-task.c b/src/ufo-buffer-task.c
index 199098d..5a8801b 100644
--- a/src/ufo-buffer-task.c
+++ b/src/ufo-buffer-task.c
@@ -349,14 +349,14 @@ ufo_buffer_task_class_init (UfoBufferTaskClass *klass)
g_param_spec_uint ("number",
"Number of pre-allocated \"pages\"",
"Number of pre-allocated \"pages\"",
- 1, 4096, 4,
+ 1, 32768, 4,
G_PARAM_READWRITE);
properties[PROP_DUP_COUNT] =
g_param_spec_uint ("dup-count",
"Number of times each image should be duplicated",
"Number of times each image should be duplicated",
- 1, 4096, 1,
+ 1, 32768, 1,
G_PARAM_READWRITE);
properties[PROP_LOOP] =