diff options
| author | bulia byak <buliabyak@gmail.com> | 2008-03-27 21:18:57 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2008-03-27 21:18:57 +0000 |
| commit | d58045d94c56cccf848f60abd5f2622c74758568 (patch) | |
| tree | 985e5dd409f0ee468aedc396f244e3680ca39d6f /src/dialogs/clonetiler.cpp | |
| parent | The deprecated version of sp_item_invoke_bbox_full (which still uses NRRects)... (diff) | |
| download | inkscape-d58045d94c56cccf848f60abd5f2622c74758568.tar.gz inkscape-d58045d94c56cccf848f60abd5f2622c74758568.zip | |
patch from bug 170978
(bzr r5205)
Diffstat (limited to 'src/dialogs/clonetiler.cpp')
| -rw-r--r-- | src/dialogs/clonetiler.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/dialogs/clonetiler.cpp b/src/dialogs/clonetiler.cpp index 397729339..b0bc44bd7 100644 --- a/src/dialogs/clonetiler.cpp +++ b/src/dialogs/clonetiler.cpp @@ -1128,10 +1128,10 @@ clonetiler_apply( GtkWidget */*widget*/, void * ) 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); @@ -1966,7 +1966,7 @@ clonetiler_dialog (void) 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); } @@ -1974,7 +1974,7 @@ clonetiler_dialog (void) 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); } @@ -1999,7 +1999,7 @@ clonetiler_dialog (void) 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); } @@ -2007,7 +2007,7 @@ clonetiler_dialog (void) 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); } |
