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>2019-12-12 05:43:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-12-12 07:50:26 +0300
commitda09bbc3dd1b56d9938107435dfe18078df6ecf5 (patch)
tree5e6a610ddaee8e642edf725e1f329760a3196755 /release/scripts/startup/bl_ui/space_nla.py
parent8aadba6ef054ad21558548ab0e2bbde4cfedcbec (diff)
Cleanup: some variables had unused naming but were used
Diffstat (limited to 'release/scripts/startup/bl_ui/space_nla.py')
-rw-r--r--release/scripts/startup/bl_ui/space_nla.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_nla.py b/release/scripts/startup/bl_ui/space_nla.py
index 24d6f65d9b9..28b67c93666 100644
--- a/release/scripts/startup/bl_ui/space_nla.py
+++ b/release/scripts/startup/bl_ui/space_nla.py
@@ -70,8 +70,8 @@ class NLA_MT_editor_menus(Menu):
bl_idname = "NLA_MT_editor_menus"
bl_label = ""
- def draw(self, _context):
- st = _context.space_data
+ def draw(self, context):
+ st = context.space_data
layout = self.layout
layout.menu("NLA_MT_view")
layout.menu("NLA_MT_select")