diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2011-03-23 18:18:54 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2011-03-23 18:18:54 +0000 |
| commit | 4551234fbfbc5ab5c2ca14a7b56f93775855f6d9 (patch) | |
| tree | f87f0f5e0dd39b071aec77d55c66f1438547ee7a /src/extension/param/int.cpp | |
| parent | Path. Fix for Bug #170225 (relative image paths instead of absolute). (diff) | |
| download | inkscape-4551234fbfbc5ab5c2ca14a7b56f93775855f6d9.tar.gz inkscape-4551234fbfbc5ab5c2ca14a7b56f93775855f6d9.zip | |
Filters. Posterize basic tweaks. Extensions. Int and Float adjustment widgets adjustment.
(bzr r10125)
Diffstat (limited to 'src/extension/param/int.cpp')
| -rw-r--r-- | src/extension/param/int.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/param/int.cpp b/src/extension/param/int.cpp index bd89c971d..69849c656 100644 --- a/src/extension/param/int.cpp +++ b/src/extension/param/int.cpp @@ -105,7 +105,7 @@ public: /** \brief Make the adjustment using an extension and the string describing the parameter. */ ParamIntAdjustment (ParamInt * param, SPDocument * doc, Inkscape::XML::Node * node, sigc::signal<void> * changeSignal) : - Gtk::Adjustment(0.0, param->min(), param->max(), 1.0, 0), _pref(param), _doc(doc), _node(node), _changeSignal(changeSignal) { + Gtk::Adjustment(0.0, param->min(), param->max(), 1.0, 10.0, 0), _pref(param), _doc(doc), _node(node), _changeSignal(changeSignal) { this->set_value(_pref->get(NULL, NULL) /* \todo fix */); this->signal_value_changed().connect(sigc::mem_fun(this, &ParamIntAdjustment::val_changed)); return; |
