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-04-14 03:29:11 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-04-14 03:34:32 +0300
commitaf2f4724d57ac11d45e22db97fa797676c44d091 (patch)
tree71299a3cdc136e360bd91cab24c7b07cfaa656a6 /release/scripts/startup/bl_ui/space_filebrowser.py
parent2bceb3ae1859e67e4f6b487e999f0f81d7615fb3 (diff)
Cleanup: don't use single sets for comparisons
Diffstat (limited to 'release/scripts/startup/bl_ui/space_filebrowser.py')
-rw-r--r--release/scripts/startup/bl_ui/space_filebrowser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_filebrowser.py b/release/scripts/startup/bl_ui/space_filebrowser.py
index cf7669e74a4..44dfe2a688e 100644
--- a/release/scripts/startup/bl_ui/space_filebrowser.py
+++ b/release/scripts/startup/bl_ui/space_filebrowser.py
@@ -104,7 +104,7 @@ class FILEBROWSER_UL_dir(bpy.types.UIList):
else:
row.prop(direntry, "name", text="", emboss=False, icon=icon)
- elif self.layout_type in {'GRID'}:
+ elif self.layout_type == 'GRID':
layout.alignment = 'CENTER'
layout.prop(direntry, "path", text="")