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-06-06 08:59:27 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-06-06 08:59:27 +0300
commitd7e745206799f61de332fdbe711910f3f6c6c773 (patch)
tree04cbe47050b49da9d9c6e3efcf12e59d47c8ed5d
parentb69ed14ff745820d104dcf410c6fa64c841712c6 (diff)
Quiet warning creating sculpt brush tooltips
-rw-r--r--release/scripts/modules/bl_keymap_utils/keymap_from_toolbar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/modules/bl_keymap_utils/keymap_from_toolbar.py b/release/scripts/modules/bl_keymap_utils/keymap_from_toolbar.py
index e08e8b45135..fe7068afc5a 100644
--- a/release/scripts/modules/bl_keymap_utils/keymap_from_toolbar.py
+++ b/release/scripts/modules/bl_keymap_utils/keymap_from_toolbar.py
@@ -208,7 +208,7 @@ def generate(context, space_type):
properties=kmi_hack_brush_select_properties,
include={'KEYBOARD'},
)[1]
- elif mode == 'PARTICLE_EDIT':
+ elif mode in {'PARTICLE_EDIT', 'SCULPT_GPENCIL'}:
# Doesn't use brushes
pass
else: