Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/space_file/file_ops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_file/file_ops.c b/source/blender/editors/space_file/file_ops.c
index 217ce8f1d9a..fd998807106 100644
--- a/source/blender/editors/space_file/file_ops.c
+++ b/source/blender/editors/space_file/file_ops.c
@@ -1843,9 +1843,9 @@ static void file_expand_directory(bContext *C)
SpaceFile *sfile = CTX_wm_space_file(C);
if (sfile->params) {
- /* TODO, what about // when relbase isn't valid? */
- if (G.relbase_valid && BLI_path_is_rel(sfile->params->dir)) {
- BLI_path_abs(sfile->params->dir, G.main->name);
+ if (BLI_path_is_rel(sfile->params->dir)) {
+ /* Use of 'default' folder here is just to avoid an error message on '//' prefix. */
+ BLI_path_abs(sfile->params->dir, G.relbase_valid ? G.main->name : BKE_appdir_folder_default());
}
else if (sfile->params->dir[0] == '~') {
char tmpstr[sizeof(sfile->params->dir) - 1];