summaryrefslogtreecommitdiffstats
path: root/src/ui/tools (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove into filtered groupsJabier Arraiza2018-11-051-1/+1
|
* Fix related bug on eraserJabier Arraiza2018-11-051-1/+1
|
* Improvemets to find itemsJabier Arraiza2018-11-051-1/+1
|
* Merge branch 'fix-knot-selection' of gitlab.com:ao2/inkscapeMarc Jeanmougin2018-11-041-4/+4
|\
| * ToolBase::root_handler: fix keyboard movement for KEY_Up and KEY_Down eventsAntonio Ospite2018-11-011-4/+4
| | | | | | | | | | | | | | | | | | | | | | Moving shape knots up and down with the keyboard moves them in the opposite direction when the Y axis goes downwards. This happens because commit 1fa0c72b66 (New option to invert y-axis, 2018-09-12) forgot to handle Y direction in src/ui/tools/tool-base.cpp. Fix the issue by applying the Y axis direction factor just like it's done in src/ui/tool/control-point-selection.cpp.
* | Minor yaxis fix for meassure toolJabier Arraiza2018-11-031-1/+5
|/
* Remove 'document-private.h' where not needed plus some other header cleanup.Tavmjong Bah2018-10-221-1/+0
|
* Improve Meassure tool by a sugestion from Maren: ↵Jabiertxof2018-10-081-4/+4
| | | | https://chat.inkscape.org/channel/team_development?msg=sPPQMgwiGyvwfBGnv
* Merge branch 'misc-typos' of gitlab.com:luzpaz/inkscapeMarc Jeanmougin2018-10-071-1/+1
|\
| * Misc. typosluz.paz2018-10-061-1/+1
| | | | | | Found via `codespell`
* | Fix dot size for calligraphyMarc Jeanmougin2018-10-071-1/+1
| |
* | Fix warning object!=nullptrMarc Jeanmougin2018-10-061-1/+1
|/
* Removal of code but breaks gradientsMartin Owens2018-10-051-5/+5
|
* Move macros.h and remove unneeded macrosEduard Braun2018-10-0119-19/+26
|
* Remove #include "config.h" wherever possibleEduard Braun2018-10-0112-44/+1
|
* Move GTKMM_CHECK_VERSION from config.h to it's own headerEduard Braun2018-10-011-0/+2
| | | | | Avoids having to recompile most of the Inkscape codebase whenever gtkmm is updated.
* Remove #include "config.h" from header files where possibleEduard Braun2018-09-241-4/+0
|
* adjust GDK_SCROLL_SMOOTH for MacBook TrackpadThomas Holder2018-09-211-1/+21
|
* Merge branch 'misc-typos' of gitlab.com:luzpaz/inkscapeMarc Jeanmougin2018-09-131-12/+12
|\
| * Requested revisions + more typos and grammar fixesluz.paz2018-09-111-12/+12
| |
| * Misc. typosluz.paz2018-09-111-1/+1
| | | | | | Found via `codespell -q 3 -I ../inkscape-whitelist.txt --skip="*.svg,*.po,*.nsh,*.in,./src/3rdparty"`
* | Fix a meassure tooltip updated pointed by maren at hacfest, tooltip is not ↵Jabiertxof2018-09-132-3/+12
| | | | | | | | updated if no moviment on shift press
* | Fix horizontal scrolling direction when using smooth scrollingEduard Braun2018-09-131-1/+1
| |
* | New option to invert y-axisThomas Holder2018-09-127-14/+31
| | | | | | | | | | | | | | | | | | Replaces all hard coded or implicit desktop coordinate usage with doc2dt multiplication. New global preference: Interface > Origin at upper left https://bugs.launchpad.net/inkscape/+bug/170049
* | Support smooth scrolling (part 2)Eduard Braun2018-09-112-2/+4
| | | | | | | | | | | | | | | | | | | | Fix scrolling when smooth scrolling is enabled / allow to scroll smoothly for: - canvas palette - node selection in path tool - selection cycling in select tool while holding Alt key - spraying in spray tool with mouse wheel - adjusting color by scrolling in lower left stroke/fill fields
* | Support smooth scrolling (part 1)Eduard Braun2018-09-111-5/+31
|/ | | | Allows panning / zooming / rotating the canvas smoothly.
* Move pixmaps to ui/pixmaps, and update the README accordingly.Emmanuel Gil Peyrot2018-06-2122-48/+48
|
* Replace functions with methods in SPColor.Emmanuel Gil Peyrot2018-06-193-12/+12
|
* Run clang-tidy’s modernize-use-emplace pass.Emmanuel Gil Peyrot2018-06-183-3/+3
| | | | | This reduces the boilerplate required to add a new element to a container.
* Run clang-tidy’s modernize-use-bool-literals pass.Emmanuel Gil Peyrot2018-06-185-18/+18
| | | | | This makes it clearer whether an integer or a boolean has to be passed in this specific call.
* Run clang-tidy’s modernize-deprecated-headers pass.Emmanuel Gil Peyrot2018-06-188-8/+8
| | | | This renames most C <*.h> includes into C++ <c*> includes.
* Run clang-tidy’s modernize-use-equals-default pass.Emmanuel Gil Peyrot2018-06-183-6/+3
| | | | | This replaces empty constructors and destructors with the default keyword.
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-1828-491/+491
| | | | | This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
* Run clang-tidy’s modernize-use-override pass.Emmanuel Gil Peyrot2018-06-1825-127/+127
| | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier.
* Merge branch 'clang-tidy-delete-pass' of gitlab.com:linkmauve/inkscapeMarc Jeanmougin2018-06-141-2/+2
|\
| * Run clang-tidy’s modernize-use-equals-delete pass.Emmanuel Gil Peyrot2018-06-121-2/+2
| | | | | | | | | | Adds a delete specifier on constructors, destructors or assignment methods that should never be called, ensuring they actually never will.
* | Replace all deprecated gdk_keymap_get_default() with ↵Emmanuel Gil Peyrot2018-06-121-3/+4
| | | | | | | | Gdk::Display::get_default()->get_keymap().
* | Make ToolBase::cursor use gdkmm and smart pointers.Emmanuel Gil Peyrot2018-06-123-22/+15
|/
* Misc. typosluz.paz2018-05-141-1/+1
| | | Found via `codespell` and `grep`
* Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin2018-05-0422-51/+51
| | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
* Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin2018-04-2922-51/+51
|
* Put adaptagrams into its own folderMarc Jeanmougin2018-04-291-1/+1
|
* Fixing LPE recalculations warnings on updateJabier Arraiza2018-04-235-24/+3
|
* Fix bug: 1758477Jabier Arraiza2018-03-283-4/+11
| | | | | Rotate Duplicate/ Mirror Symmetry added functionality feature request https://bugs.launchpad.net/inkscape/+bug/1758477
* a bit more of warning cleanupFelipe Corrêa da Silva Sanches2018-03-283-6/+5
|
* Fix bug: 1738504Jabier Arraiza2018-03-281-1/+0
| | | | Title:Measurement tool measures mirrored text in wrong position
* Allow upadate shapen innside groups with LPEJabier Arraiza2018-03-267-6/+22
|
* Fixing refsJabier Arraiza2018-03-262-13/+0
|
* Fix maren problem in ↵Jabier Arraiza2018-03-261-2/+0
| | | | https://gitlab.com/inkscape/inkscape/merge_requests/212#note_61574788
* Base LPE refactorJabier Arraiza2018-03-263-7/+7
|