summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2008-07-26 15:42:56 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2008-07-26 15:42:56 +0000
commitfb7ead11ef08fdd798f4edf8613de0e0be31c4f7 (patch)
tree010e32b89a68f2a385c23d628b1b41b2666eba34 /src
parentAdded compensation factor for time-skew with event latency. (diff)
downloadinkscape-fb7ead11ef08fdd798f4edf8613de0e0be31c4f7.tar.gz
inkscape-fb7ead11ef08fdd798f4edf8613de0e0be31c4f7.zip
meaningful limits
(bzr r6422)
Diffstat (limited to 'src')
-rw-r--r--src/ui/dialog/inkscape-preferences.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/dialog/inkscape-preferences.cpp b/src/ui/dialog/inkscape-preferences.cpp
index 1f9ef051e..a33d79bfd 100644
--- a/src/ui/dialog/inkscape-preferences.cpp
+++ b/src/ui/dialog/inkscape-preferences.cpp
@@ -932,10 +932,10 @@ void InkscapePreferences::initPageSVGOutput()
_page_svgoutput.add_group_header( _("Numbers"));
- _svgoutput_numericprecision.init("options.svgoutput", "numericprecision", 0.0, 1000.0, 1.0, 2.0, 8.0, true, false);
+ _svgoutput_numericprecision.init("options.svgoutput", "numericprecision", 1.0, 16.0, 1.0, 2.0, 8.0, true, false);
_page_svgoutput.add_line( false, _("Numeric precision"), _svgoutput_numericprecision, "", _("How many digits to write after the decimal dot"), false);
- _svgoutput_minimumexponent.init("options.svgoutput", "minimumexponent", -100.0, 100.0, 1.0, 2.0, -8.0, true, false);
+ _svgoutput_minimumexponent.init("options.svgoutput", "minimumexponent", -32.0, -1, 1.0, 2.0, -8.0, true, false);
_page_svgoutput.add_line( false, _("Minimum exponent"), _svgoutput_minimumexponent, "", _("The smallest number written to SVG is 10 to the power of this exponent; anything smaller is written as zero."), false);
this->AddPage(_page_svgoutput, _("SVG output"), PREFS_PAGE_SVGOUTPUT);