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>2020-12-16 10:02:40 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-12-16 10:02:40 +0300
commite671c548e66e95d4fd1884c81c2dab1ae4a1a219 (patch)
treeb40a9188f9a2b98998c384d1453d1c45d450f4f7 /release/scripts/startup/bl_ui/space_filebrowser.py
parentf34ca933a806b83be957f69835c7a6033fe5ca2c (diff)
Cleanup: pep8
Diffstat (limited to 'release/scripts/startup/bl_ui/space_filebrowser.py')
-rw-r--r--release/scripts/startup/bl_ui/space_filebrowser.py23
1 files changed, 19 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_filebrowser.py b/release/scripts/startup/bl_ui/space_filebrowser.py
index 527a5bc623e..15e2e3d02e0 100644
--- a/release/scripts/startup/bl_ui/space_filebrowser.py
+++ b/release/scripts/startup/bl_ui/space_filebrowser.py
@@ -267,7 +267,11 @@ class FILEBROWSER_PT_bookmarks_system(Panel):
@classmethod
def poll(cls, context):
- return not context.preferences.filepaths.hide_system_bookmarks and panel_poll_is_upper_region(context.region) and not panel_poll_is_asset_browsing(context)
+ return (
+ not context.preferences.filepaths.hide_system_bookmarks and
+ panel_poll_is_upper_region(context.region) and
+ not panel_poll_is_asset_browsing(context)
+ )
def draw(self, context):
layout = self.layout
@@ -301,7 +305,10 @@ class FILEBROWSER_PT_bookmarks_favorites(Panel):
@classmethod
def poll(cls, context):
- return panel_poll_is_upper_region(context.region) and not panel_poll_is_asset_browsing(context)
+ return (
+ panel_poll_is_upper_region(context.region) and
+ not panel_poll_is_asset_browsing(context)
+ )
def draw(self, context):
layout = self.layout
@@ -338,7 +345,11 @@ class FILEBROWSER_PT_bookmarks_recents(Panel):
@classmethod
def poll(cls, context):
- return not context.preferences.filepaths.hide_recent_locations and panel_poll_is_upper_region(context.region) and not panel_poll_is_asset_browsing(context)
+ return (
+ not context.preferences.filepaths.hide_recent_locations and
+ panel_poll_is_upper_region(context.region) and
+ not panel_poll_is_asset_browsing(context)
+ )
def draw(self, context):
layout = self.layout
@@ -362,7 +373,11 @@ class FILEBROWSER_PT_advanced_filter(Panel):
@classmethod
def poll(cls, context):
# only useful in append/link (library) context currently...
- return context.space_data.params.use_library_browsing and panel_poll_is_upper_region(context.region) and not panel_poll_is_asset_browsing(context)
+ return (
+ context.space_data.params.use_library_browsing and
+ panel_poll_is_upper_region(context.region) and
+ not panel_poll_is_asset_browsing(context)
+ )
def draw(self, context):
layout = self.layout