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>2018-07-07 09:58:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-07 10:02:34 +0300
commit0f1000ce0b296c1a6e4de3534dd3f3b51926167c (patch)
treeea4079e37db48e07554c85891d02e6d20ea1348a /release/scripts/startup/bl_ui/space_dopesheet.py
parent80a31d30a4f6b793902d5d5ccd91f4fe3971e2b1 (diff)
Cleanup: pep8, style
Diffstat (limited to 'release/scripts/startup/bl_ui/space_dopesheet.py')
-rw-r--r--release/scripts/startup/bl_ui/space_dopesheet.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_dopesheet.py b/release/scripts/startup/bl_ui/space_dopesheet.py
index 92022e019cc..1b89cfd470d 100644
--- a/release/scripts/startup/bl_ui/space_dopesheet.py
+++ b/release/scripts/startup/bl_ui/space_dopesheet.py
@@ -283,7 +283,7 @@ class DOPESHEET_HT_editor_buttons(Header):
row = layout.row(align=True)
row.operator("action.copy", text="", icon='COPYDOWN')
row.operator("action.paste", text="", icon='PASTEDOWN')
- if st.mode not in ('GPENCIL', 'MASK'):
+ if st.mode not in {'GPENCIL', 'MASK'}:
row.operator("action.paste", text="", icon='PASTEFLIPDOWN').flipped = True