diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2010-07-18 08:51:05 +0000 |
|---|---|---|
| committer | Jon A. Cruz <jon@joncruz.org> | 2010-07-18 08:51:05 +0000 |
| commit | abe9db0e041a91e74350d2766889c89f08664239 (patch) | |
| tree | 13444d5bd5f1bc1954439870b4b7390afe0a5f6b /src/extension/system.cpp | |
| parent | Correcting black gradient stops when swatches are set or drug. (diff) | |
| download | inkscape-abe9db0e041a91e74350d2766889c89f08664239.tar.gz inkscape-abe9db0e041a91e74350d2766889c89f08664239.zip | |
Correct default for save-as location. Fixes bug #561375.
Fixed bugs:
- https://launchpad.net/bugs/561375
(bzr r9606.1.11)
Diffstat (limited to 'src/extension/system.cpp')
| -rw-r--r-- | src/extension/system.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/system.cpp b/src/extension/system.cpp index 6ffa7f57f..5412a5cc0 100644 --- a/src/extension/system.cpp +++ b/src/extension/system.cpp @@ -589,7 +589,7 @@ get_file_save_path (SPDocument *doc, FileSaveMethod method) { switch (method) { case FILE_SAVE_METHOD_SAVE_AS: { - bool use_current_dir = prefs->getBool("/dialogs/save_as/use_current_dir"); + bool use_current_dir = prefs->getBool("/dialogs/save_as/use_current_dir", true); if (doc->uri && use_current_dir) { path = Glib::path_get_dirname(doc->uri); } else { |
