summaryrefslogtreecommitdiffstats
path: root/src/ufo-volume-render-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-volume-render-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-volume-render-task.c')
-rw-r--r--src/ufo-volume-render-task.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ufo-volume-render-task.c b/src/ufo-volume-render-task.c
index 5326d71..a0698bb 100644
--- a/src/ufo-volume-render-task.c
+++ b/src/ufo-volume-render-task.c
@@ -392,14 +392,14 @@ ufo_volume_render_task_class_init (UfoVolumeRenderTaskClass *klass)
g_param_spec_uint ("width",
"Width",
"Width of the rendered image",
- 1, 8192, 512,
+ 1, 32768, 512,
G_PARAM_READWRITE);
properties[PROP_HEIGHT] =
g_param_spec_uint ("height",
"Height",
"Height of the rendered image",
- 1, 8192, 512,
+ 1, 32768, 512,
G_PARAM_READWRITE);
properties[PROP_NUM_GENERATE] =