diff options
| author | John Smith <john.smith7545@yahoo.com> | 2012-10-08 12:00:57 +0000 |
|---|---|---|
| committer | John Smith <john.smith7545@yahoo.com> | 2012-10-08 12:00:57 +0000 |
| commit | 900d1a05ba36f84df3a51188b938a6551a5201d2 (patch) | |
| tree | 0ee71cf80c768ea871a6c32f7aa2b8bdb90e6b3c /src/ui | |
| parent | Fix for 303527 : GUI glitch on opacity box (diff) | |
| download | inkscape-900d1a05ba36f84df3a51188b938a6551a5201d2.tar.gz inkscape-900d1a05ba36f84df3a51188b938a6551a5201d2.zip | |
Fix for 490338 : Try to create the autosave directory if that does not exists
(bzr r11759)
Diffstat (limited to 'src/ui')
| -rw-r--r-- | src/ui/dialog/inkscape-preferences.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/inkscape-preferences.cpp b/src/ui/dialog/inkscape-preferences.cpp index ce73f47f1..2731b6174 100644 --- a/src/ui/dialog/inkscape-preferences.cpp +++ b/src/ui/dialog/inkscape-preferences.cpp @@ -1046,7 +1046,7 @@ void InkscapePreferences::initPageIO() // Show the default fallback "tmp dir" if autosave path is not set. _save_autosave_path.set_text(Glib::get_tmp_dir()); } - _page_autosave.add_line(false, C_("Filesystem", "Autosave _directory:"), _save_autosave_path, "", _("The directory where autosaves will be written"), false); + _page_autosave.add_line(false, C_("Filesystem", "Autosave _directory:"), _save_autosave_path, "", _("The directory where autosaves will be written. This should be an absolute path (starts with / on UNIX or a drive letter such as C: on Windows). "), false); _save_autosave_interval.init("/options/autosave/interval", 1.0, 10800.0, 1.0, 10.0, 10.0, true, false); _page_autosave.add_line(false, _("_Interval (in minutes):"), _save_autosave_interval, "", _("Interval (in minutes) at which document will be autosaved"), false); _save_autosave_max.init("/options/autosave/max", 1.0, 100.0, 1.0, 10.0, 10.0, true, false); |
