summaryrefslogtreecommitdiffstats
path: root/src/object (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-11-21fix Glib::Regex::match stack-use-after-scopeThomas Holder1-1/+6
Fixes cursor jumping mentioned by @nathanal: https://gitlab.com/inkscape/inkscape/issues/521#note_247899536
2019-11-18Multiple fixes for the objects panelDiederik van Lierop1-1/+3
2019-11-13Fix alignment error for inline-size SVG 1.1 fallback text.Tavmjong Bah1-1/+6
Puts white space at end of line into separate tspan when 'text-anchor' is not start.
2019-11-08Use correct function to add additional style sheets to style sheet list.Tavmjong Bah1-1/+1
2019-11-03refactor: Eliminate SPIString::value_defaultThomas Holder3-10/+10
- eliminate value_default - make value private (-> _value) - add value() method
2019-11-01Improve clip LPEJabier Arraiza2-5/+9
Fixes: https://gitlab.com/inkscape/inbox/issues/868 https://gitlab.com/inkscape/inbox/issues/867 https://gitlab.com/inkscape/inbox/issues/866
2019-10-30Fix initial transform of shape in opened file.Nathan Lee1-1/+4
Fix https://gitlab.com/inkscape/inkscape/issues/495 and likely other problems.
2019-10-28refactor: TypedSPIThomas Holder1-1/+1
2019-10-28refactor SPIEnum: more type safetyThomas Holder1-1/+1
fixes ungrouping of "font-weight:bolder" fixes "titling-caps" parsing fixes a casting error in CairoRenderContext::renderGlyphtext
2019-10-27fix heap-use-after-free on "Unlink Clone"Thomas Holder2-0/+4
Reverts part of 6e5d89bf9595
2019-10-24Fix gradient/mesh handles after object with gradient/mesh cloned.Tavmjong Bah3-17/+36
Fixes https://bugs.launchpad.net/inkscape/+bug/453067 Fixes https://gitlab.com/inkscape/inkscape/issues/130
2019-10-22Properly calculate line height for flowDivPatrick Storz1-1/+1
Fixes https://gitlab.com/inkscape/inkscape/issues/244
2019-10-18fix #477 unlink clone with viewBoxThomas Holder1-1/+5
2019-10-18Make href and unhref member functions of SPObject.Tavmjong Bah5-53/+43
2019-10-16Inkscape::XML::Node::addChildAtPosThomas Holder1-2/+1
2019-10-14no "SPString" label for XML editor text nodesThomas Holder1-1/+0
2019-10-13Fix crash on filtersMarc Jeanmougin1-0/+3
Fixes https://gitlab.com/inkscape/inkscape/issues/466
2019-10-10Fix GC warningsMarc Jeanmougin1-0/+1
2019-10-09Fix segfault in reading in meshes when xml:space="preserve".Tavmjong Bah1-6/+4
Fixes https://gitlab.com/inkscape/inkscape/issues/172
2019-10-05Fix various minor code problemsMarc Jeanmougin1-6/+5
2019-10-05Fix some memory leaks found by scan-buildMarc Jeanmougin2-4/+5
2019-10-01Support "lang" and "xml:lang" attributes.Tavmjong Bah2-1/+29
Partial fix for https://gitlab.com/inkscape/inbox/issues/951
2019-10-01Use two bounding box caches instead of oneNathan Lee2-7/+16
gitlab.com/inkscape/inbox/issues/943 gitlab.com/inkscape/inkscape/issues/339
2019-09-30Reduce memory leaks when dragging shapesNathan Lee1-1/+2
Remove unnecessary copy per Thomas' suggestion
2019-09-30Don't create empty text node when reading in "textPath".Tavmjong Bah1-16/+0
Fix for https://gitlab.com/inkscape/inbox/issues/512
2019-09-29Fix issue 872. LPE on rects is not rendering in browsersJabier Arraiza3-7/+53
2019-09-17Allow transforms in rects with LPEJabiertxof1-0/+3
2019-09-16Active SVG2 Flow Text by defaultJabiertxof1-1/+1
2019-09-16Allow paste preserving new lines into a flowtext elementJabiertxof3-4/+28
2019-09-16Allow paste on flowbox at same sice of origin, also improve creation to get ↵Jabiertxof1-5/+3
rid of transforms on origin
2019-09-13Allow to paste paragraphs in SVG2 Flow then paste overflow the shapeJabiertxof2-3/+38
2019-09-13A value of zero for 'inline-size' should act as if 'inline-size' is not set. ↵Tavmjong Bah1-4/+5
Fixes #852.
2019-09-07Allow transforms in SVG2 flow elementsJabier Arraiza1-0/+9
2019-09-07Prepared for beta. Fixed blocking bugJabiertxof1-1/+0
2019-09-07Prepare for betaJabiertxof1-4/+1
2019-09-07fixx flowbox on SVG2 mode using tspansJabiertxof1-2/+10
2019-09-07Write out 'x' and 'y' attribute values to repr when some text property value ↵Tavmjong Bah1-0/+1
changes. Changes to property values may cause text to be relayed out, changing 'x' and 'y' attributes on tspans with sodipodi:role="line". Fix for issue 234.
2019-09-06Add listeners for when shapes used by text are changed.Tavmjong Bah2-29/+38
2019-08-31Templates: Accept non-underscored variants of "inkscape:templateinfo"Patrick Storz1-1/+1
2019-08-28Fix issues pointed by @ede123 and cssinateJabiertxof1-5/+8
2019-08-23Eliminate clang warningsThomas Holder1-1/+1
-Winfinite-recursion -Wpessimizing-move -Wunused-label -Wunneeded-internal-declaration -Wself-assign-overloaded -Wunused-const-variable (some) -Wsometimes-uninitialized (some)
2019-08-23Eliminate clang warningsThomas Holder2-4/+2
-Wconstant-conversion -Wenum-compare-switch -Wpointer-bool-conversion -Wundefined-bool-conversion -Wunused-value Excluding deprecation warnings and 3rdparty directory.
2019-08-18reduce usage of desktop coordinates (#341)Thomas Holder1-1/+1
- avoid unnecessary internal usage of desktop coordinates, e.g. in SpellCheck::compareTextBboxes - document whether a function argument is in document or desktop coordinates, e.g. for SPDocument::getItemsInBox
2019-08-17HatchKnotHolderEntityScale & some fixesvanntile3-21/+36
2019-08-17Added knot holder entitiesvanntile4-13/+116
2019-08-14fix #371 guides label upside downThomas Holder1-3/+3
2019-08-06Fix Arc toolbar buttons (gitlab, inkscape#355)Nathan Lee1-2/+2
2019-07-29Add Patrick improvements to verbs toggle menu itemsJabiertxof2-3/+4
2019-07-28Fix some issues with inverse coordinates pointed by MarenJabier Arraiza1-2/+2
2019-07-28Add verbs update checkbuttons in menu. Also do improvements requested in ↵Jabier Arraiza1-1/+7
https://gitlab.com/inkscape/inkscape/issues/323 and improve XRay rendering