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/presets
parent8aadba6ef054ad21558548ab0e2bbde4cfedcbec (diff)
Cleanup: some variables had unused naming but were used
Diffstat (limited to 'release/scripts/presets')
-rw-r--r--release/scripts/presets/keyconfig/keymap_data/blender_default.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/presets/keyconfig/keymap_data/blender_default.py b/release/scripts/presets/keyconfig/keymap_data/blender_default.py
index 7a5f40de483..5c69e47be38 100644
--- a/release/scripts/presets/keyconfig/keymap_data/blender_default.py
+++ b/release/scripts/presets/keyconfig/keymap_data/blender_default.py
@@ -3237,7 +3237,7 @@ def km_grease_pencil_stroke_paint_erase(params):
return keymap
-def km_grease_pencil_stroke_paint_fill(_params):
+def km_grease_pencil_stroke_paint_fill(params):
items = []
keymap = (
"Grease Pencil Stroke Paint (Fill)",
@@ -3258,7 +3258,7 @@ def km_grease_pencil_stroke_paint_fill(_params):
("gpencil.draw", {"type": 'LEFTMOUSE', "value": 'PRESS', "alt": True},
{"properties": [("mode", 'DRAW'), ("wait_for_input", False), ("disable_straight", True), ("disable_fill", True)]}),
# Lasso select
- ("gpencil.select_lasso", {"type": _params.action_tweak, "value": 'ANY', "ctrl": True, "alt": True}, None),
+ ("gpencil.select_lasso", {"type": params.action_tweak, "value": 'ANY', "ctrl": True, "alt": True}, None),
])
return keymap