diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2008-02-26 14:59:41 +0000 |
|---|---|---|
| committer | tavmjong <tavmjong@users.sourceforge.net> | 2008-02-26 14:59:41 +0000 |
| commit | cfdffc2faa5eae1f9f28ec041bb1ac1cf9cfbcee (patch) | |
| tree | f0b8be307a92c52f3c5c66c76cf39503f504633b /src/dialogs | |
| parent | Activate desktops upon creation; this fixes bug #195373 but please double che... (diff) | |
| download | inkscape-cfdffc2faa5eae1f9f28ec041bb1ac1cf9cfbcee.tar.gz inkscape-cfdffc2faa5eae1f9f28ec041bb1ac1cf9cfbcee.zip | |
Fix for bug 184668 (Tile clone random scaling broken)
(bzr r4863)
Diffstat (limited to 'src/dialogs')
| -rw-r--r-- | src/dialogs/clonetiler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dialogs/clonetiler.cpp b/src/dialogs/clonetiler.cpp index dec60ed46..105a24f28 100644 --- a/src/dialogs/clonetiler.cpp +++ b/src/dialogs/clonetiler.cpp @@ -1139,8 +1139,8 @@ clonetiler_apply( GtkWidget */*widget*/, void * ) double scaley_per_i = 0.01 * prefs_get_double_attribute_limited (prefs_path, "scaley_per_i", 0, -100, 1000); double scalex_per_j = 0.01 * prefs_get_double_attribute_limited (prefs_path, "scalex_per_j", 0, -100, 1000); double scaley_per_j = 0.01 * prefs_get_double_attribute_limited (prefs_path, "scaley_per_j", 0, -100, 1000); - double scalex_rand = 0.01 * prefs_get_double_attribute_limited (prefs_path, "rand_scalex", 0, 0, 1000); - double scaley_rand = 0.01 * prefs_get_double_attribute_limited (prefs_path, "rand_scaley", 0, 0, 1000); + double scalex_rand = 0.01 * prefs_get_double_attribute_limited (prefs_path, "scalex_rand", 0, 0, 1000); + double scaley_rand = 0.01 * prefs_get_double_attribute_limited (prefs_path, "scaley_rand", 0, 0, 1000); double scalex_exp = prefs_get_double_attribute_limited (prefs_path, "scalex_exp", 1, 0, 10); double scaley_exp = prefs_get_double_attribute_limited (prefs_path, "scaley_exp", 1, 0, 10); double scalex_log = prefs_get_double_attribute_limited (prefs_path, "scalex_log", 0, 0, 10); |
