summaryrefslogtreecommitdiffstats
path: root/src/ui/widget/ink-spinscale.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Run clang-tidy’s modernize-use-equals-default pass.Emmanuel Gil Peyrot2018-06-181-2/+2
| | | | | This replaces empty constructors and destructors with the default keyword.
* Run clang-tidy’s modernize-use-override pass.Emmanuel Gil Peyrot2018-06-181-2/+2
| | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier.
* Avoid crash when confirming new value in InkSpinScale with KeyboardEduard Braun2018-03-131-1/+1
| | | | | | | | | | | | It seems "InkSpinScale::set_focus_widget()" is never called, so "_focus_widget" is never initialized and has an arbitrary value. Avoid this by initializing to zero. Why we never call set_focus_widget() is TBD... Fixed bugs: - https://bugs.launchpad.net/inkscape/+bug/1755464
* Allow to constrain InkSpinScale slider values by pressing Ctrl keyEduard Braun2018-03-121-1/+1
| | | | Some common and useful step intervals are hardcoded.
* Replace the Gtk::Range by Gtk::Scale in the InkSpinScale widget.Tavmjong Bah2017-12-191-5/+22
| | | | The Gtk::Scale is more likely to produce a satisfactory result independent of theme.
* Replace GimpSpinScale by InkSpinScale.Tavmjong Bah2017-12-181-0/+78