summaryrefslogtreecommitdiffstats
path: root/src/ui/widget (follow)
Commit message (Collapse)AuthorAgeFilesLines
* refactor: Eliminate SPIString::value_defaultThomas Holder2019-11-031-2/+3
| | | | | | - eliminate value_default - make value private (-> _value) - add value() method
* Update bounding box on changing blurNathan Lee2019-10-291-0/+2
|
* Fix some blurs iddle large loopsJabiertxof2019-10-281-8/+5
|
* refactor SPIEnum: more type safetyThomas Holder2019-10-283-10/+10
| | | | | | fixes ungrouping of "font-weight:bolder" fixes "titling-caps" parsing fixes a casting error in CairoRenderContext::renderGlyphtext
* Remove isolate check. Need to find a way to isolate all containersJabier Arraiza2019-10-211-2/+10
|
* Improvements to blending and tooltipJabier Arraiza2019-10-203-4/+14
|
* Add export/import PDF blend modes and add isolation modifierJabier Arraiza2019-10-194-40/+121
|
* Fix logic for Tool Combobox's group labelNathan Lee2019-10-172-12/+30
|
* Fix a bug in previous commitJabier Arraiza2019-10-142-5/+5
|
* Fix a extra blend enumJabier Arraiza2019-10-142-27/+6
|
* Re-Add blending modes UI using CSS instead filtersJabier Arraiza2019-10-143-34/+99
|
* Initialize some uninitialized variablesMarc Jeanmougin2019-10-113-2/+5
|
* Reduce memory leak on editing text, etc.Nathan Lee2019-10-113-5/+6
|
* Fix uninitialized valueMarc Jeanmougin2019-10-101-0/+1
|
* Change color entry widget UXNathan Lee2019-10-092-20/+65
| | | | | | | | | | | | - Previous alpha value used in autofill - Always filter non-hex input - Autocomplete on enter - Treat 1-2 digit input as grey colors - Treat short input (3/4) as shorthand hex notation - 8 digit hex with # no longer clipped when pasted - Side effect: filtered input moves cursor forward https://gitlab.com/inkscape/inkscape/issues/346
* Fix memory leaks in color wheelNathan Lee2019-10-091-1/+4
|
* Minimise artefacts on edge of color wheelNathan Lee2019-10-091-10/+65
| | | | | | | - Clamp values for linear interpolation - Make color in padding more accurate - Use stride to move between rows - See https://gitlab.com/inkscape/inbox/issues/954
* Remove pixman_log_error from consoleNathan Lee2019-09-261-0/+1
|
* Fix unsetting variable font values giving wrong font name (Issue 842).Tavmjong Bah2019-09-121-1/+2
|
* Fix non changing value on combobox. This can also be used in other toolbarsJabier Arraiza2019-09-124-2/+17
|
* Add Text direction iconsJabiertxof2019-09-071-2/+14
|
* Last improvements to line heightJabier Arraiza2019-09-073-5/+13
|
* Add line height UX improvementsJabier Arraiza2019-09-072-0/+7
|
* Puts back translator commentsMarc Jeanmougin2019-08-281-2/+2
| | | | Fixes https://gitlab.com/inkscape/inkscape/issues/391
* Eliminate clang warningsThomas Holder2019-08-231-1/+1
| | | | | | | | | | -Wconstant-conversion -Wenum-compare-switch -Wpointer-bool-conversion -Wundefined-bool-conversion -Wunused-value Excluding deprecation warnings and 3rdparty directory.
* Formatting last commitvanntile2019-08-172-19/+16
|
* Some useful hatch changesvanntile2019-08-172-5/+19
|
* Remove line height code and ficx coding styleJabiertxof2019-08-022-13/+0
|
* Fix coding styleJabiertxof2019-08-021-2/+2
|
* Add font size units and Adam UX sugestionJabiertxof2019-08-022-0/+13
|
* Add lineheight proposalJabier Arraiza2019-08-023-32/+2
|
* Fix coding styleJabier Arraiza2019-08-021-3/+4
|
* add hamburger line height menuJabier Arraiza2019-08-021-1/+2
|
* moving hamburger to only line height partJabier Arraiza2019-08-022-0/+28
|
* Make doc2dt a document propertyThomas Holder2019-07-271-1/+1
| | | | Closes #340
* fix issue on theme changeJabier Arraiza2019-07-082-13/+1
|
* Fix coding styleJabiertxof2019-07-081-1/+0
|
* Allow pop in front and disable color buttons viewJabiertxof2019-07-082-9/+12
|
* Coding Style FixesJabiertxof2019-07-081-7/+2
|
* Add coloring default to themeJabiertxof2019-07-081-2/+6
|
* Add initial commitJabiertxof2019-07-081-0/+5
|
* Initial code to fixJabiertxof2019-07-082-7/+17
|
* Fix various minor typosYuri Chornoivan2019-07-013-3/+3
|
* Remove gimp ruler.Tavmjong Bah2019-06-291-3/+6
|
* Make ruler tickes line up with other GUI elements (e.g. grids).Tavmjong Bah2019-06-291-1/+1
|
* Fix rendering on high DPI screens.Tavmjong Bah2019-06-292-8/+11
|
* Reimplement ruler in C++.Tavmjong Bah2019-06-292-0/+545
|
* Merge branch 'gtk3-deprecated' of gitlab.com:Qantas94Heavy/inkscapeMarc Jeanmougin2019-06-204-23/+6
|\
| * Remove custom tab order in Document PropertiesKarl Cheng2019-06-162-8/+0
| | | | | | | | | | | | | | | | | | | | | | The method for handling custom tab order in GTK (set_focus_chain) has been deprecated since GTK 3.24 with no direct replacement. I've decided to remove this code as the code did not seem to make any difference during testing: the tab order appeared to be the same. Regardless, 'Page -> Custom size' in Document Properties is the only place that it's used, so the impact should be fairly limited anyway.
| * Replace deprecated Gtk::Menu::popup() -> popup_at_pointer()Karl Cheng2019-06-162-15/+6
| |