[Bf-blender-cvs] [ec99778] master: Fix: OSX - Cmd + A doesn't work for Font objects editing

Dalai Felinto noreply at git.blender.org
Fri Feb 12 14:58:52 CET 2016


Commit: ec9977855f9264ecf6af5b4c8e6d10324a02028e
Author: Dalai Felinto
Date:   Fri Feb 12 11:54:47 2016 -0200
Branches: master
https://developer.blender.org/rBec9977855f9264ecf6af5b4c8e6d10324a02028e

Fix: OSX - Cmd + A doesn't work for Font objects editing

Since Cmd + A works elsewhere, it should work during font objects editing as well.

There is still a mysterious issue with Cmd + Z not working for UNDO the edited
text in OSX (probably GHOST related).

===================================================================

M	source/blender/editors/curve/curve_ops.c

===================================================================

diff --git a/source/blender/editors/curve/curve_ops.c b/source/blender/editors/curve/curve_ops.c
index 1fbd57d..967187e 100644
--- a/source/blender/editors/curve/curve_ops.c
+++ b/source/blender/editors/curve/curve_ops.c
@@ -213,6 +213,7 @@ void ED_keymap_curve(wmKeyConfig *keyconf)
 	WM_keymap_add_item(keymap, "FONT_OT_text_cut", XKEY, KM_PRESS, KM_CTRL, 0);
 	WM_keymap_add_item(keymap, "FONT_OT_text_paste", VKEY, KM_PRESS, KM_CTRL, 0);
 #ifdef __APPLE__
+	WM_keymap_add_item(keymap, "FONT_OT_select_all", AKEY, KM_PRESS, KM_OSKEY, 0);
 	WM_keymap_add_item(keymap, "FONT_OT_text_copy", CKEY, KM_PRESS, KM_OSKEY, 0);
 	WM_keymap_add_item(keymap, "FONT_OT_text_cut", XKEY, KM_PRESS, KM_OSKEY, 0);
 	WM_keymap_add_item(keymap, "FONT_OT_text_paste", VKEY, KM_PRESS, KM_OSKEY, 0);




More information about the Bf-blender-cvs mailing list