Index: clonetiler.cpp =================================================================== --- clonetiler.cpp (revision 17253) +++ clonetiler.cpp (working copy) @@ -1120,10 +1120,10 @@ clonetiler_remove (NULL, NULL, false); - double shiftx_per_i = 0.01 * prefs_get_double_attribute_limited (prefs_path, "shiftx_per_i", 0, -100, 1000); - double shifty_per_i = 0.01 * prefs_get_double_attribute_limited (prefs_path, "shifty_per_i", 0, -100, 1000); - double shiftx_per_j = 0.01 * prefs_get_double_attribute_limited (prefs_path, "shiftx_per_j", 0, -100, 1000); - double shifty_per_j = 0.01 * prefs_get_double_attribute_limited (prefs_path, "shifty_per_j", 0, -100, 1000); + double shiftx_per_i = 0.01 * prefs_get_double_attribute_limited (prefs_path, "shiftx_per_i", 0, -10000, 10000); + double shifty_per_i = 0.01 * prefs_get_double_attribute_limited (prefs_path, "shifty_per_i", 0, -10000, 10000); + double shiftx_per_j = 0.01 * prefs_get_double_attribute_limited (prefs_path, "shiftx_per_j", 0, -10000, 10000); + double shifty_per_j = 0.01 * prefs_get_double_attribute_limited (prefs_path, "shifty_per_j", 0, -10000, 10000); double shiftx_rand = 0.01 * prefs_get_double_attribute_limited (prefs_path, "shiftx_rand", 0, 0, 1000); double shifty_rand = 0.01 * prefs_get_double_attribute_limited (prefs_path, "shifty_rand", 0, 0, 1000); double shiftx_exp = prefs_get_double_attribute_limited (prefs_path, "shiftx_exp", 1, 0, 10); @@ -1953,7 +1953,7 @@ GtkWidget *l = clonetiler_spinbox (tt, // xgettext:no-c-format _("Horizontal shift per row (in % of tile width)"), "shiftx_per_j", - -100, 1000, "%"); + -10000, 10000, "%"); clonetiler_table_attach (table, l, 0, 2, 2); } @@ -1961,7 +1961,7 @@ GtkWidget *l = clonetiler_spinbox (tt, // xgettext:no-c-format _("Horizontal shift per column (in % of tile width)"), "shiftx_per_i", - -100, 1000, "%"); + -10000, 10000, "%"); clonetiler_table_attach (table, l, 0, 2, 3); } @@ -1986,7 +1986,7 @@ GtkWidget *l = clonetiler_spinbox (tt, // xgettext:no-c-format _("Vertical shift per row (in % of tile height)"), "shifty_per_j", - -100, 1000, "%"); + -10000, 10000, "%"); clonetiler_table_attach (table, l, 0, 3, 2); } @@ -1994,7 +1994,7 @@ GtkWidget *l = clonetiler_spinbox (tt, // xgettext:no-c-format _("Vertical shift per column (in % of tile height)"), "shifty_per_i", - -100, 1000, "%"); + -10000, 10000, "%"); clonetiler_table_attach (table, l, 0, 3, 3); }