summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix buttons stringsJabier Arraiza2018-07-241-2/+2
|
* Fix buttons stringsJabier Arraiza2018-07-241-2/+2
|
* Add buttons to open folders as sugestion of MarenJabier Arraiza2018-07-242-8/+34
|
* Fix a wrongy commitJabier Arraiza2018-07-242-2/+3
|
* Remove pointerJabiertxo Arraiza Cenoz2018-07-242-6/+5
|
* Add themes inkscape folder abailable by the appJabiertxo Arraiza Cenoz2018-07-241-2/+5
|
* Toggle symbolic icons staff depending the theme has it or notJabiertxo Arraiza Cenoz2018-07-222-8/+41
|
* Fixing coding styleJabier Arraiza2018-07-212-86/+78
|
* Fixing some icons dont redrawJabier Arraiza2018-07-211-7/+3
|
* Working on themesJabier Arraiza2018-07-212-8/+6
|
* adding gtk-themeJabier Arraiza2018-07-2117-118/+272
|
* Reduce width of Transform dialog by making spinbuttons narrowerGeoff Lankow2018-07-021-0/+6
|
* Move global functions into SPGradient methods.Emmanuel Gil Peyrot2018-06-212-2/+2
|
* Replace typedef enum with enum in POD type declarations.Emmanuel Gil Peyrot2018-06-202-8/+8
|
* Replace typedef struct with struct in POD type declarations.Emmanuel Gil Peyrot2018-06-201-2/+3
|
* Replace functions with methods in SPColor.Emmanuel Gil Peyrot2018-06-191-3/+3
|
* Run clang-tidy’s modernize-redundant-void-arg pass.Emmanuel Gil Peyrot2018-06-1915-23/+23
|
* Run clang-tidy’s modernize-use-emplace pass.Emmanuel Gil Peyrot2018-06-1812-189/+189
| | | | | 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-1810-22/+22
| | | | | This makes it clearer whether an integer or a boolean has to be passed in this specific call.
* Run clang-tidy’s modernize-pass-by-value pass.Emmanuel Gil Peyrot2018-06-187-11/+20
| | | | | This avoids having to pass variables by reference before copying them when calling a constructor.
* Run clang-tidy’s modernize-deprecated-headers pass.Emmanuel Gil Peyrot2018-06-185-5/+5
| | | | This renames most C <*.h> includes into C++ <c*> includes.
* Run clang-tidy’s modernize-use-equals-default pass.Emmanuel Gil Peyrot2018-06-1838-75/+57
| | | | | This replaces empty constructors and destructors with the default keyword.
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-1855-643/+643
| | | | | 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-1865-248/+248
| | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier.
* Increase allowed precision for filter "offset" primitive.Tavmjong Bah2018-06-151-2/+2
|
* Merge branch 'clang-tidy-delete-pass' of gitlab.com:linkmauve/inkscapeMarc Jeanmougin2018-06-1430-66/+66
|\
| * Run clang-tidy’s modernize-use-equals-delete pass.Emmanuel Gil Peyrot2018-06-1230-66/+66
| | | | | | | | | | Adds a delete specifier on constructors, destructors or assignment methods that should never be called, ensuring they actually never will.
* | Merge branch 'fontselection' of gitlab.com:darktrojan/inkscapeMarc Jeanmougin2018-06-141-1/+5
|\ \
| * | In font list, don't change selection if current font is already selected; ↵Geoff Lankow2018-05-311-1/+5
| | | | | | | | | | | | other minor fixes
* | | Merge branch 'patch-1' of gitlab.com:Moini/inkscapeMarc Jeanmougin2018-06-141-1/+1
|\ \ \ | |_|/ |/| |
| * | Incorporate some of Mihaela's suggestions.Maren Hachmann2018-05-111-1/+1
| | |
| * | Try a different tool tip that hopefully can help users determine what to ↵Maren Hachmann2018-03-081-1/+1
| | | | | | | | | | | | expect on change of the rendering tile multiplicator parameter.
| * | Try to clarify what the new tile size option is for.Maren Hachmann2018-03-021-1/+1
| | | | | | | | | Might still need improvement.
* | | Keep Features tab in sync with font in Font tab.Tavmjong Bah2018-06-031-0/+1
| | |
* | | Add preview to Font Features tab of Text and Font dialog.Tavmjong Bah2018-06-022-46/+45
| |/ |/|
* | Merge branch 'fix-undefined-references-without-lcms' of ↵Marc Jeanmougin2018-05-221-24/+24
|\ \ | | | | | | | | | gitlab.com:libiquity/inkscape
| * | DocumentProperties: Fix undefined references without lcmsPatrick McDermott2018-05-201-24/+24
| | | | | | | | | | | | | | | | | | | | | Inkscape::UI::Dialog::DocumentProperties::create_guides_around_page() and Inkscape::UI::Dialog::DocumentProperties::delete_all_guides() are unconditionally referenced but were defined only if either HAVE_LIBLCMS1 or HAVE_LIBLCMS2 is defined.
* | | Print: Match document size against known paper sizesPatrick McDermott2018-05-201-8/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Custom paper sizes work with some printer drivers but not others. EPSON's ESC/P-R CUPS driver for example scales a custom-sized document to ISO A4. (It apparently used to just bail on unknown page sizes.) Matching the document size against a known paper size in Inkscape prevents the driver from scaling to the wrong paper size. Fixes an issue discussed in comments 3, 4, 5, and 6 of <https://bugs.launchpad.net/inkscape/+bug/630635>.
* | | Print: C++ifyPatrick McDermott2018-05-202-77/+71
|/ /
* | Fis maren improvements to embed/importJabier Arraiza2018-05-151-2/+2
| |
* | Misc. typosluz.paz2018-05-143-3/+3
| | | | | | Found via `codespell` and `grep`
* | Fix bug embeding SVG as PNGJabier Arraiza2018-05-132-0/+8
| |
* | Fixes bugs: #1770760, #1770761, #1770763, #1770769 related to linked SVGJabier Arraiza2018-05-122-5/+8
| |
* | Allow link a SVG as imageJabiertxo Arraiza Cenoz2018-05-101-1/+1
| |
* | Merge branch 'guidespanel' of gitlab.com:darktrojan/inkscapeMarc Jeanmougin2018-05-092-1/+42
|\ \
| * | Add global guide controls to guides panelGeoff Lankow2018-05-042-1/+42
| | |
* | | Create and use LabelledColorPicker widgetGeoff Lankow2018-05-092-11/+5
| | |
* | | Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin2018-05-0444-149/+149
| | | | | | | | | | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
* | | Rename "Glyphs" dialog to "Unicode Characters" dialog to better reflect what ↵Tavmjong Bah2018-05-032-7/+5
| | | | | | | | | | | | | | | | | | it does. Minor UI tweaks and bug fixes.
* | | Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin2018-04-2944-149/+149
| | |