summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 329a7ab)
raw | patch | inline | side by side (parent: 329a7ab)
author | buliabyak <buliabyak@users.sourceforge.net> | |
Tue, 17 Jan 2006 08:16:42 +0000 (08:16 +0000) | ||
committer | buliabyak <buliabyak@users.sourceforge.net> | |
Tue, 17 Jan 2006 08:16:42 +0000 (08:16 +0000) |
src/ui/dialog/inkscape-preferences.cpp | patch | blob | history | |
src/ui/widget/preferences-widget.cpp | patch | blob | history |
index 1fa2049d2dd266084406a1df36e2babf27d9605d..df79429744f9622e3fab250fdf258f4e93e6a32f 100644 (file)
_misc_recent.init("options.maxrecentdocuments", "value", 0.0, 1000.0, 1.0, 1.0, 1.0, true, false);
_page_misc.add_line( false, _("Max recent documents:"), _misc_recent, "",
_("The maximum length of the Open Recent list in the File menu"), false);
- _misc_simpl.init("options.simplifythreshold", "value", 0.0, 1.0, 0.001, 0.01, 0.002, false, false);
+ _misc_simpl.init("options.simplifythreshold", "value", 0.0001, 1.0, 0.0001, 0.001, 0.001, false, false);
_page_misc.add_line( false, _("Simplification threshold:"), _misc_simpl, "",
_("How strong is the Simplify command by default. If you invoke this command several times in quick succession, it will act more and more aggressively; invoking it again after a pause restores the default threshold."), false);
int const num_items = 5;
index cc389c611be684fdc817d433e22f0da9cf56a9a2..b53db0512930a522baf9fc22e769bdfa0a77c98a 100644 (file)
@@ -215,7 +215,7 @@ void PrefSpinButton::init(const std::string& prefs_path, const std::string& attr
if (is_int)
this->set_digits(0);
else if (step_increment < 0.1)
- this->set_digits(3);
+ this->set_digits(4);
else
this->set_digits(2);