summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/flood-context.cpp2
-rw-r--r--src/widgets/toolbox.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/flood-context.cpp b/src/flood-context.cpp
index 5d106a795..cd2f1a5ec 100644
--- a/src/flood-context.cpp
+++ b/src/flood-context.cpp
@@ -302,7 +302,7 @@ static void do_trace(GdkPixbuf *px, SPDesktop *desktop, NR::Matrix transform) {
long totalNodeCount = 0L;
- double offset = prefs_get_double_attribute("tools.paintbucket", "offset", 2.0);
+ double offset = prefs_get_double_attribute("tools.paintbucket", "offset", 0.0);
for (unsigned int i=0 ; i<results.size() ; i++) {
Inkscape::Trace::TracingEngineResult result = results[i];
diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp
index 975a8cbda..ce2c8eecd 100644
--- a/src/widgets/toolbox.cpp
+++ b/src/widgets/toolbox.cpp
@@ -4478,7 +4478,7 @@ sp_paintbucket_toolbox_new(SPDesktop *desktop)
{
GtkWidget *offset = sp_tb_spinbutton(_("Offset:"),
_("The amount to grow the path after it has been traced"),
- "tools.paintbucket", "offset", 5, us, tbl, TRUE,
+ "tools.paintbucket", "offset", 0, us, tbl, TRUE,
"inkscape:paintbucket-offset", -1e6, 1e6, 0.1, 0.5,
paintbucket_offset_changed, 1, 2);