Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
4
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
inkscape
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1,110
Issues
1,110
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
89
Merge Requests
89
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
External Wiki
External Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Inkscape
inkscape
Commits
515569e7
Commit
515569e7
authored
Jul 27, 2019
by
Nathan Lee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Crashfix for copying object with LPE Clone
Fix
inbox#553
parent
9afd2e38
Pipeline
#73339514
failed with stages
in 8 minutes and 21 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
src/live_effects/lpe-clone-original.cpp
src/live_effects/lpe-clone-original.cpp
+2
-4
No files found.
src/live_effects/lpe-clone-original.cpp
View file @
515569e7
...
...
@@ -61,11 +61,9 @@ void LPECloneOriginal::doEffect (SPCurve * curve)
curve_out
=
SP_TEXT
(
linked_obj
)
->
getNormalizedBpath
();
}
if
(
curve_out
==
NULL
)
{
// curve invalid, set empty pathvector
curve_out
->
set_pathvector
(
Geom
::
PathVector
());
if
(
curve_out
!=
NULL
)
{
curve
->
set_pathvector
(
curve_out
->
get_pathvector
());
}
curve
->
set_pathvector
(
curve_out
->
get_pathvector
());
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment