summaryrefslogtreecommitdiffstats
path: root/src/ui (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Replace IS_NAN with std::isnan (exists since C++11)Patrick Storz2019-04-022-3/+3
|
* Replace IS_FINITE with std::isfinite (exists since C++11)Patrick Storz2019-04-021-1/+1
|
* Realign and reorder guides UINathan Lee2019-04-023-9/+46
|
* Tidy UI for Object Properties/AttributesNathan Lee2019-04-021-10/+11
|
* Tidy various dialog UIsNathan Lee2019-04-0222-202/+323
|
* Some anti-aliasingPatrick Storz2019-03-312-2/+2
|
* Aspell: No need to explicitly set prefix anymorePatrick Storz2019-03-302-35/+1
| | | | | Aspell (at least the MSYS2 version) is properly relocatable these days.
* Avoid redefining INKSCAPE_DATADIRPatrick Storz2019-03-301-1/+1
| | | | | Define and use INKSCAPE_DATADIR_REAL instead, which avoids potential include order issues and avoids some semantic ambiguity.
* An a few more config.h fixesPatrick Storz2019-03-283-12/+0
|
* Remove unused code for NEW_EXPORT_DIALOGPatrick Storz2019-03-274-736/+2
| | | | | Functionality seems to have been replaced by "Save a Copy" and the PNG export dialog respectively.
* remove wrong from clipboard pasteJabiertxof2019-03-271-2/+1
|
* Allow add LPE with one clickJabiertxof2019-03-272-4/+38
|
* Add window class along dark/bright to mark APP is using symbolic icons or ↵Jabiertxof2019-03-271-0/+9
| | | | regular to allow apply diferent rules in icon contesx. For example allow use icons by css only (and sufix properly with "-symbolic" when necesary
* Misc. typosluz.paz2019-03-262-2/+2
| | | Found via `codespell`
* About dialog: Fix icon file locationPatrick Storz2019-03-241-1/+1
| | | | (was renamed in deeb288fc38e09fba325741afb2c66f693438f9b)
* Fixing coding styleJabier Arraiza2019-03-241-1/+1
|
* Add some handling fixes to selector classesJabier Arraiza2019-03-241-2/+2
|
* Fix compiling problemJabier Arraiza2019-03-241-4/+4
|
* Fix CI problemsJabier Arraiza2019-03-242-83/+77
|
* Move multiple selector to unhadled selectorJabier Arraiza2019-03-241-24/+20
|
* final improvements to style dialogJabier Arraiza2019-03-242-50/+109
|
* Add base of workingJabier Arraiza2019-03-243-90/+135
|
* Allow guide duplication in guides dialogMarc Jeanmougin2019-03-222-0/+11
|
* Revert Ctrl+Up/Down direction to 0.92.4 behaviourNathan Lee2019-03-221-2/+2
|
* Realign "Search and Replace" dialogPatrick Storz2019-03-222-36/+40
|
* Realign labels in "Transform" dialogPatrick Storz2019-03-221-4/+20
|
* Realign labels in "Fill and Stroke" dialogPatrick Storz2019-03-224-7/+10
|
* Document Properties: General UI cleanupPatrick Storz2019-03-228-227/+203
| | | | | | Try to achieve consistent look and reasonable alignment. Account for some gtk3 changes and some minor code cleanup.
* fix #145 XML editor crash removing style propertyThomas Holder2019-03-211-2/+2
|
* Misc. typos and whitespace fixesluz.paz2019-03-213-5/+5
| | | Found via `codespell -q 3 -I ../inkscape-whitelist.txt -S *.svg,*.po,./src/3rdparty`
* removing typo on previous commit, thanks McJabiertxof2019-03-201-1/+0
|
* Avoid cancel dragging a item when right click presedJabiertxof2019-03-202-1/+2
|
* fix #141 Find/Replace with empty stringThomas Holder2019-03-191-1/+1
|
* Tweaks to allow one to reduce size of Text and Font dialog.Tavmjong Bah2019-03-182-5/+9
| | | | Enabled/addded scrollbars and made style treeview columns resizable.
* Don't rebuild font list is only selection changed.Tavmjong Bah2019-03-181-1/+0
| | | | (Rebuilding causes font family row to be unselected.)
* Keep font variations widget in sync with CSS style widget.Tavmjong Bah2019-03-183-13/+24
|
* Make InkscapeApplication responsible for managing documents and windows.Tavmjong Bah2019-03-153-31/+35
| | | | Any change from previous behavior is a bug.
* Place vertical iconified docks to the right of dockNathan Lee2019-03-131-1/+2
| | | | Fixes https://gitlab.com/inkscape/inkscape/issues/129
* Revert Icon Preview behaviourNathan Lee2019-03-131-5/+6
| | | | | | | | | * Fix crash on close with Icon Preview. * Force update of icons with `set`. * Set minimum width for Icon Preview's Magnified so it is not hidden on startup. Fixes https://gitlab.com/inkscape/inkscape/issues/109
* Remove unnecessary conversionNathan Lee2019-03-121-2/+2
| | | | Fixes https://gitlab.com/inkscape/inbox/issues/207
* Atempt to fix high load in backgroundoctycs2019-03-111-4/+4
| | | | Signed-off-by: octycs <2087987-octycs@users.noreply.gitlab.com>
* Update translation dialog for flipped axisNathan Lee2019-03-113-18/+10
| | | | | | Flipping icon no longer works, now that we use icon themes. Fixes https://gitlab.com/inkscape/inkscape/issues/127
* Fix #122 reversing change from merge request \!303Martin Owens2019-03-081-6/+5
|
* Show LPE popups on overJabier Arraiza2019-03-082-6/+7
|
* Remove reload UI and some theming fixesJabier Arraiza2019-03-073-80/+29
|
* Translations: Drop Amharic (am) translationPatrick Storz2019-03-071-2/+2
| | | | | | | | | It's completely empty... Actually something went wrong in 5a46d516222e06023ecef9c76f605d14fb30e165 which removed all (fuzzy) strings that had ever been translated, but there seems to be no point in retrieving them anymore.
* Merge: Avoid the “using std::*;” or “using namespace std;” constructMartin Owens2019-03-066-36/+26
|\
| * Avoid the “using std::*;” or “using namespace std;” constructs.Emmanuel Gil Peyrot2019-03-066-36/+26
| | | | | | | | This makes the code a lot less readable and greppable for no reason.
* | Error handling for reading pencil preferencesNathan Lee2019-03-061-1/+1
| | | | | | | | Fixes https://gitlab.com/inkscape/inkscape/issues/92
* | Merge: Update background-color tooltips in document-properties.cppMartin Owens2019-03-061-2/+2
|\ \