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:
authorNicholas Bishop <nicholasbishop@gmail.com>2012-03-14 11:37:47 +0400
committerNicholas Bishop <nicholasbishop@gmail.com>2012-03-14 11:37:47 +0400
commit4d3f11c66f3fce8d04f01283ab3f61b231df9fee (patch)
tree7dbf64d4a8e26acf64b3ab92441c8191eb0eb8e1 /source/blender/editors
parent7454d939c5ac94b114b1754e899e1395d2473dc9 (diff)
Fix some errors in partial visibility drawing.
Also changed show-in-border key to SHIFT+H as suggested by Daniel Salazar.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/sculpt_paint/paint_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_ops.c b/source/blender/editors/sculpt_paint/paint_ops.c
index 9f9f3ab2289..dd6e7cad16b 100644
--- a/source/blender/editors/sculpt_paint/paint_ops.c
+++ b/source/blender/editors/sculpt_paint/paint_ops.c
@@ -528,7 +528,7 @@ void paint_partial_visibility_keys(wmKeyMap *keymap)
wmKeyMapItem *kmi;
/* Partial visiblity */
- kmi= WM_keymap_add_item(keymap, "PAINT_OT_hide_show", HKEY, KM_PRESS, KM_CTRL, 0);
+ kmi= WM_keymap_add_item(keymap, "PAINT_OT_hide_show", HKEY, KM_PRESS, KM_SHIFT, 0);
RNA_enum_set(kmi->ptr, "action", PARTIALVIS_SHOW);
RNA_enum_set(kmi->ptr, "area", PARTIALVIS_INSIDE);
kmi= WM_keymap_add_item(keymap, "PAINT_OT_hide_show", HKEY, KM_PRESS, 0, 0);