diff options
| author | John Bintz <me@johnbintz.com> | 2007-03-08 02:35:11 +0000 |
|---|---|---|
| committer | johncoswell <johncoswell@users.sourceforge.net> | 2007-03-08 02:35:11 +0000 |
| commit | 8d5da277b1738cd3f6eb5edc33f2609fcdcb2dfc (patch) | |
| tree | 72e9d6c885e6e4c8e732961d45f5e8a873ba09e6 /src/flood-context.cpp | |
| parent | Fix what appears to be a copy&paste bug: ć was getting rendered as ˇc; chan... (diff) | |
| download | inkscape-8d5da277b1738cd3f6eb5edc33f2609fcdcb2dfc.tar.gz inkscape-8d5da277b1738cd3f6eb5edc33f2609fcdcb2dfc.zip | |
Add units selector to offset and remove offset range limits
(bzr r2564)
Diffstat (limited to 'src/flood-context.cpp')
| -rw-r--r-- | src/flood-context.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/flood-context.cpp b/src/flood-context.cpp index 6ee1f9a68..5d106a795 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_limited("tools.paintbucket", "offset", 1.5, 0.0, 2.0); + double offset = prefs_get_double_attribute("tools.paintbucket", "offset", 2.0); for (unsigned int i=0 ; i<results.size() ; i++) { Inkscape::Trace::TracingEngineResult result = results[i]; @@ -747,6 +747,7 @@ void flood_channels_changed(GtkComboBox *cbox, GtkWidget *tbl) { prefs_set_int_attribute("tools.paintbucket", "channels", (gint)gtk_combo_box_get_active(cbox)); } + /* Local Variables: mode:c++ |
