diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2016-11-09 21:03:39 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marcjeanmougin@free.fr> | 2016-11-09 21:03:39 +0000 |
| commit | afe611e02639684bc57a4bda796dbd6305ab38a9 (patch) | |
| tree | ed672d400bfabb4d49d9608b16635f6e77aa414d /src/ui/tools/flood-tool.cpp | |
| parent | Click-drag selects nodes rather than creates new mesh if mesh already exists. (diff) | |
| parent | Move boolop functions from sp_selected_path_<op> to ObjectSet::path<op> (diff) | |
| download | inkscape-afe611e02639684bc57a4bda796dbd6305ab38a9.tar.gz inkscape-afe611e02639684bc57a4bda796dbd6305ab38a9.zip | |
merge boolop branch: Move boolop functions from sp_selected_path_<op> to ObjectSet::path<op>
(bzr r15232)
Diffstat (limited to 'src/ui/tools/flood-tool.cpp')
| -rw-r--r-- | src/ui/tools/flood-tool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/tools/flood-tool.cpp b/src/ui/tools/flood-tool.cpp index 0b893a7ba..b01b8ad52 100644 --- a/src/ui/tools/flood-tool.cpp +++ b/src/ui/tools/flood-tool.cpp @@ -446,7 +446,7 @@ static void do_trace(bitmap_coords_info bci, guchar *trace_px, SPDesktop *deskto ngettext("Area filled, path with <b>%d</b> node created and unioned with selection.","Area filled, path with <b>%d</b> nodes created and unioned with selection.", SP_PATH(reprobj)->nodesInPath()), SP_PATH(reprobj)->nodesInPath() ); selection->add(reprobj); - sp_selected_path_union_skip_undo(desktop->getSelection()); + selection->pathUnion(true); } else { desktop->messageStack()->flashF( Inkscape::WARNING_MESSAGE, ngettext("Area filled, path with <b>%d</b> node created.","Area filled, path with <b>%d</b> nodes created.", |
