summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/find.cpp
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2013-10-08 10:22:49 +0000
committertavmjong-free <tavmjong@free.fr>2013-10-08 10:22:49 +0000
commitf5d74fe46345673252807be3b6812bbb0469e457 (patch)
tree2dd29c409d36d5dbfbe008cfff774880fd310b3d /src/ui/dialog/find.cpp
parentcppcheck (diff)
downloadinkscape-f5d74fe46345673252807be3b6812bbb0469e457.tar.gz
inkscape-f5d74fe46345673252807be3b6812bbb0469e457.zip
Seamlessly switch between SVG circle, ellipse, and path (arc) elements while using the Circle, Ellipse, and Arc tool.
(bzr r12670)
Diffstat (limited to 'src/ui/dialog/find.cpp')
-rw-r--r--src/ui/dialog/find.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/find.cpp b/src/ui/dialog/find.cpp
index def7b5bdb..37f2761df 100644
--- a/src/ui/dialog/find.cpp
+++ b/src/ui/dialog/find.cpp
@@ -664,7 +664,7 @@ bool Find::item_type_match (SPItem *item)
if ( SP_IS_RECT(item)) {
return ( all ||check_rects.get_active());
- } else if (SP_IS_GENERICELLIPSE(item) || SP_IS_ELLIPSE(item) || SP_IS_ARC(item) || SP_IS_CIRCLE(item)) {
+ } else if (SP_IS_GENERICELLIPSE(item)) {
return ( all || check_ellipses.get_active());
} else if (SP_IS_STAR(item) || SP_IS_POLYGON(item)) {