diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2008-07-26 08:08:33 +0000 |
|---|---|---|
| committer | joncruz <joncruz@users.sourceforge.net> | 2008-07-26 08:08:33 +0000 |
| commit | 733015dc6306535893ed745f68d77920ae12ff41 (patch) | |
| tree | f6999e10271fef1cf48a32591e81d8967f5a62a4 /src/ui/dialog/inkscape-preferences.cpp | |
| parent | purge livarot stuff from nodepath (diff) | |
| download | inkscape-733015dc6306535893ed745f68d77920ae12ff41.tar.gz inkscape-733015dc6306535893ed745f68d77920ae12ff41.zip | |
Added compensation factor for time-skew with event latency.
(bzr r6421)
Diffstat (limited to 'src/ui/dialog/inkscape-preferences.cpp')
| -rw-r--r-- | src/ui/dialog/inkscape-preferences.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ui/dialog/inkscape-preferences.cpp b/src/ui/dialog/inkscape-preferences.cpp index 455908a06..1f9ef051e 100644 --- a/src/ui/dialog/inkscape-preferences.cpp +++ b/src/ui/dialog/inkscape-preferences.cpp @@ -1049,6 +1049,11 @@ void InkscapePreferences::initPageMisc() _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); + _misc_latency_skew.init("debug.latency", "skew", 0.5, 2.0, 0.01, 0.10, 1.0, false, false); + _page_misc.add_line( false, _("Latency skew:"), _misc_latency_skew, _("(requires restart)"), + _("Factor by which the event clock is skewed from the actual time (0.9766 on some systems)."), false); + + this->AddPage(_page_misc, _("Misc"), PREFS_PAGE_MISC); } |
