summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/inkscape-preferences.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove OCALMarc Jeanmougin2019-11-011-5/+0
|
* Allow acces to user themes folder from themes tab along on system tabJabier Arraiza2019-10-091-0/+1
|
* remove HAVE_POTRACEMarc Jeanmougin2019-08-221-4/+0
|
* Improve spellcheck dialogThomas Holder2019-08-211-2/+0
| | | | | | | | | | | - only use one language at a time for spell check - allow quick language change in spellcheck dialog - if no languages selected in preferences, list all installed aspell dictionaries in dialog - don't make "en" the default, use first available dictionary - add preferences button - auto-select first suggestion - fix #362 crash if no dictionaries available
* Add paint server dialog. Currently handles patterns and hatches. GSOC 2019.Valentin Ionita2019-08-191-1/+3
|
* Hide spellcheck dialog if Aspell is missingNathan Lee2019-07-311-1/+2
| | | | Hide warnings emitted if Aspell/Potrace missing
* PoewePencil improvementsJabier Arraiza2019-07-141-1/+0
|
* comment uneeded headerJabier Arraiza2019-07-081-1/+1
|
* fix issue on theme changeJabier Arraiza2019-07-081-1/+2
|
* fix compiling problemJabier Arraiza2019-07-081-1/+0
|
* comment alternate colorsJabier Arraiza2019-07-081-1/+4
|
* Improvements to temming allow diferent on dark themesJabiertxof2019-07-081-2/+0
|
* Coding Style FixesJabiertxof2019-07-081-1/+2
|
* Add coloring default to themeJabiertxof2019-07-081-0/+2
|
* working wth colors for iconsJabier Arraiza2019-07-081-7/+10
|
* Fix coding styleJabiertxof2019-07-081-1/+1
|
* Initial code to fixJabiertxof2019-07-081-1/+5
|
* Remove experimental code to work in MR and fixes for selectorsJabier Arraiza2019-06-231-4/+1
|
* Base of theming refactorJabiertxof2019-06-181-1/+1
|
* Add next gen theme for Adam BellisJabier Arraiza2019-06-161-0/+4
|
* Add 'Theme Decide' option to symbolic icons colorJabier Arraiza2019-01-261-0/+1
|
* Add button to delete prefsMarc Jeanmougin2019-01-111-0/+1
|
* Rm deprecated budget widgetsAlexander Valavanis2018-12-291-2/+1
|
* Add some SVG 2 fallbacks:Tavmjong Bah2018-12-071-2/+11
| | | | | | * Meshes (fill only) * Markers: auto-start-reverse, context-stroke/fill * Text
* fix coding styleJabier Arraiza2018-12-041-1/+1
|
* Ready to review XRayJabier Arraiza2018-12-041-0/+1
|
* This improve symbolic icon rendering moving it to CSS only. There is places ↵Jabiertxof2018-11-091-0/+1
| | | | in the UI whar we claim for a Pixbuf. Currently its not possible render them as symbolic without the previos hack
* Clarify licensesMax Gaukler2018-11-081-1/+2
| | | | | | - add license headers to everything - convert a few files from public domain or LGPL2.1+ to GPL2+ - some archaeology to clarify which files are from which library
* Add a preference to force enable/disable menu iconsEduard Braun2018-11-051-0/+1
| | | | | | | | | By default the theme decides whether it wants to display icons or not by using the "show-icons" attribute in the menus.xml file. This attribute is properly inherited an can therefore be used to selectively enable and disable icons globally (by setting it on the root element), in certain submenus, or individually per menu item.
* Add preference for default global snapping and make it falseMartin Owens2018-09-271-0/+1
|
* Remove #include "config.h" from header files where possibleEduard Braun2018-09-241-4/+0
|
* Allow ask for SVG dragged import method. Also split ask question from one to ↵Jabier Arraiza2018-09-221-0/+1
| | | | 2 (Bitmap and SVG)
* New option to invert y-axisThomas Holder2018-09-121-0/+1
| | | | | | | | | 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
* Refactor with Tav helpJabier Arraiza2018-08-051-0/+4
|
* Revert changesJabier Arraiza2018-08-051-4/+0
|
* Allow inkscape handle units and percent in dasharray and dashoffset. Add ↵Jabier Arraiza2018-08-051-0/+4
| | | | pref optional to scale dashes on stroke scale
* Remove XGD_DATA_DIR as sugestion of su_vJabier Arraiza2018-07-311-2/+1
|
* Allow to change dark teme and GtkTheme at instantJabier Arraiza2018-07-281-0/+1
|
* Fix a win compiling bug and coding styleJabiertxo Arraiza Cenoz2018-07-251-15/+15
|
* Add buttons to open folders as sugestion of MarenJabier Arraiza2018-07-241-2/+9
|
* Fix a wrongy commitJabier Arraiza2018-07-241-1/+1
|
* Remove pointerJabiertxo Arraiza Cenoz2018-07-241-1/+2
|
* Toggle symbolic icons staff depending the theme has it or notJabiertxo Arraiza Cenoz2018-07-221-0/+1
|
* Fixing coding styleJabier Arraiza2018-07-211-6/+6
|
* Working on themesJabier Arraiza2018-07-211-1/+1
|
* adding gtk-themeJabier Arraiza2018-07-211-3/+12
|
* Run clang-tidy’s modernize-deprecated-headers pass.Emmanuel Gil Peyrot2018-06-181-1/+1
| | | | This renames most C <*.h> includes into C++ <c*> includes.
* Run clang-tidy’s modernize-use-equals-default pass.Emmanuel Gil Peyrot2018-06-181-2/+1
| | | | | This replaces empty constructors and destructors with the default keyword.
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-181-1/+1
| | | | | 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-181-6/+6
| | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier.