summaryrefslogtreecommitdiffstats
path: root/src/ufo-pad-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-pad-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-pad-task.c')
-rw-r--r--src/ufo-pad-task.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ufo-pad-task.c b/src/ufo-pad-task.c
index 95c2e20..187e1e1 100644
--- a/src/ufo-pad-task.c
+++ b/src/ufo-pad-task.c
@@ -315,28 +315,28 @@ ufo_pad_task_class_init (UfoPadTaskClass *klass)
g_param_spec_uint ("width",
"Padded width",
"Padded width",
- 0, +8192, 0,
+ 0, +32768, 0,
G_PARAM_READWRITE);
properties[PROP_HEIGHT] =
g_param_spec_uint ("height",
"Padded height",
"Padded height",
- 0, +8192, 0,
+ 0, +32768, 0,
G_PARAM_READWRITE);
properties[PROP_X] =
g_param_spec_int ("x",
"X start index",
"X index for input's 0th column",
- -8192, +8192, 0,
+ -32768, +32768, 0,
G_PARAM_READWRITE);
properties[PROP_Y] =
g_param_spec_int ("y",
"Y start index",
"Y index for input's 0th row",
- -8192, +8192, 0,
+ -32768, +32768, 0,
G_PARAM_READWRITE);
properties[PROP_ADDRESSING_MODE] =