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:
authorCampbell Barton <ideasman42@gmail.com>2015-09-20 23:59:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-09-20 23:59:50 +0300
commit605a2c84903f7e97728cd14d39674c1dd94d539f (patch)
tree808f0b846fda280f2d7b456e705f942fe28110ab /source/blender/editors/space_file
parentd0017eb5f2e6ebb9bfbdf2b6081685c998d6b9dc (diff)
Cleanup: warning, style
Diffstat (limited to 'source/blender/editors/space_file')
-rw-r--r--source/blender/editors/space_file/file_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_file/file_draw.c b/source/blender/editors/space_file/file_draw.c
index 7d68e782a89..2d9ecbdf415 100644
--- a/source/blender/editors/space_file/file_draw.c
+++ b/source/blender/editors/space_file/file_draw.c
@@ -234,7 +234,7 @@ void file_draw_buttons(const bContext *C, ARegion *ar)
const struct FileDirEntry *file = sfile->files ? filelist_file(sfile->files, params->active_file) : NULL;
char const *str_exec;
- if (file && FILENAME_IS_PARENT(file->relpath)){
+ if (file && FILENAME_IS_PARENT(file->relpath)) {
str_exec = IFACE_("Parent Directory");
}
else if (file && file->typeflag & FILE_TYPE_DIR) {