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:
authorJoshua Leung <aligorith@gmail.com>2014-11-30 16:48:45 +0300
committerJoshua Leung <aligorith@gmail.com>2014-11-30 16:49:36 +0300
commitb12dbdd93bff32a26a6b265d46b626491bf4926f (patch)
treec537f5858146f2032c72e41b7d60a9583657ffb5 /source/blender
parentf0278387e86519399898b7a79b94220f53ccae40 (diff)
Minor tweaks to quick palettes to avoid conflicts
For now, let's move the GPencil pies to avoid conflicts with dyntopo and other things * DQ = Main pie (previously Ctrl-D; DD was too unpredictable) * DW = Settings pie
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/gpencil/gpencil_ops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/gpencil/gpencil_ops.c b/source/blender/editors/gpencil/gpencil_ops.c
index 77fc0d49eb9..3e6d996cc71 100644
--- a/source/blender/editors/gpencil/gpencil_ops.c
+++ b/source/blender/editors/gpencil/gpencil_ops.c
@@ -90,8 +90,8 @@ static void ed_keymap_gpencil_general(wmKeyConfig *keyconf)
RNA_string_set(kmi->ptr, "data_path", "gpencil_data.use_stroke_edit_mode");
/* Pie Menu - For standard tools */
- WM_keymap_add_menu_pie(keymap, "GPENCIL_PIE_tool_palette", DKEY, KM_PRESS, KM_CTRL, 0);
- WM_keymap_add_menu_pie(keymap, "GPENCIL_PIE_settings_palette", QKEY, KM_PRESS, 0, DKEY);
+ WM_keymap_add_menu_pie(keymap, "GPENCIL_PIE_tool_palette", QKEY, KM_PRESS, 0, DKEY);
+ WM_keymap_add_menu_pie(keymap, "GPENCIL_PIE_settings_palette", WKEY, KM_PRESS, 0, DKEY);
}
/* ==================== */