diff options
| author | Maximilian Albert <maximilian.albert@gmail.com> | 2008-08-18 00:36:52 +0000 |
|---|---|---|
| committer | cilix42 <cilix42@users.sourceforge.net> | 2008-08-18 00:36:52 +0000 |
| commit | b5aced6510f430ed59531cf474631d1636b27f71 (patch) | |
| tree | b2b508b34579c71923b735bf9523e8a02684b253 /src/live_effects/effect.cpp | |
| parent | Make number of subtools configurable (diff) | |
| download | inkscape-b5aced6510f430ed59531cf474631d1636b27f71.tar.gz inkscape-b5aced6510f430ed59531cf474631d1636b27f71.zip | |
Add lpe-line_segment to LPETool toolbar
(bzr r6653)
Diffstat (limited to 'src/live_effects/effect.cpp')
| -rw-r--r-- | src/live_effects/effect.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp index 472fe5d9d..705ecede8 100644 --- a/src/live_effects/effect.cpp +++ b/src/live_effects/effect.cpp @@ -111,9 +111,10 @@ int Effect::acceptsNumClicks(EffectType type) { switch (type) { case ANGLE_BISECTOR: return 3; - case PERP_BISECTOR: return 2; case CIRCLE_3PTS: return 3; case CIRCLE_WITH_RADIUS: return 2; + case LINE_SEGMENT: return 2; + case PERP_BISECTOR: return 2; default: return 0; } } |
