Re: [Bf-committers] Regarding the current usage of proportional edit

2013-07-06 Thread David Jeske
On Fri, Jul 5, 2013 at 7:54 PM, Campbell Barton ideasma...@gmail.comwrote: Ah, I misunderstood, in that case use wm.context_menu_enum I see. That makes sense now that I see it, but I'm not sure how any reasonable user or casual dev would be able to figure that out. Which brings me back to

Re: [Bf-committers] Regarding the current usage of proportional edit

2013-07-06 Thread Hadrien Brissaud
Thanks Sean, David, Campbell. Consider my suggestion void if pie menus are effectively going to replace traditional context menus. However, let me add that hitting one single key (o) for toggling proportional edit seems more straightforward than bringing up a pie menu through the same hotkey and

Re: [Bf-committers] Regarding the current usage of proportional edit

2013-07-06 Thread David Jeske
I'm confused about your repeated mention of the o toggle. On my stock 2.67b build.. O toggles proportional edit on and off already. You should be able to use Campbell's script to setup a hotkey to pop-up a menu with the list of proportional editing modes to select from. I admit that doing this

Re: [Bf-committers] Regarding the current usage of proportional edit

2013-07-06 Thread Campbell Barton
On Sat, Jul 6, 2013 at 7:35 PM, David Jeske dav...@gmail.com wrote: I'm confused about your repeated mention of the o toggle. On my stock 2.67b build.. O toggles proportional edit on and off already. You should be able to use Campbell's script to setup a hotkey to pop-up a menu with the list

[Bf-committers] Regarding the current usage of proportional edit

2013-07-05 Thread Hadrien Brissaud
Hello all, first thing : is it the right mailing list for tiny suggestions like this one ? Please read on and tell me so I don't get it wrong. It is a usability idea. I often use proportional edit when modeling, however I sometimes use connected and sometimes not, and I don't systematically

Re: [Bf-committers] Regarding the current usage of proportional edit

2013-07-05 Thread Sean Olson
The upcoming pie menu's should make the 3 way switch pretty easy. The piemenus addon in contrib already has functionality for proportional editing on the 'o' key. The best place for suggestions like this is probably the bf-funboard (Functionality Board) mailing list. -Sean On Fri, Jul 5, 2013

Re: [Bf-committers] Regarding the current usage of proportional edit

2013-07-05 Thread David Jeske
Here is a semi-dev related followup... I figured it should be possible to cause a keypress to bring up the context-menu to select a specific proportional editing mode. I tried to replace the shift-o keybinding to wm.context_cycle_enum(tool_settings.proportional_edit_falloff) to a direct reference

Re: [Bf-committers] Regarding the current usage of proportional edit

2013-07-05 Thread Campbell Barton
On Sat, Jul 6, 2013 at 9:10 AM, David Jeske dav...@gmail.com wrote: Here is a semi-dev related followup... I figured it should be possible to cause a keypress to bring up the context-menu to select a specific proportional editing mode. I tried to replace the shift-o keybinding to

Re: [Bf-committers] Regarding the current usage of proportional edit

2013-07-05 Thread David Jeske
import bpy km = bpy.context.window_manager.keyconfigs.default.keymaps[3D View] kmi = km.keymap_items.new(wm.context_cycle_enum, 'O', 'PRESS', oskey=True) kmi.properties.data_path = tool_settings.proportional_edit_falloff When I do this, I get the same behavior as the current. It cycles

Re: [Bf-committers] Regarding the current usage of proportional edit

2013-07-05 Thread Campbell Barton
On Sat, Jul 6, 2013 at 12:44 PM, David Jeske dav...@gmail.com wrote: import bpy km = bpy.context.window_manager.keyconfigs.default.keymaps[3D View] kmi = km.keymap_items.new(wm.context_cycle_enum, 'O', 'PRESS', oskey=True) kmi.properties.data_path = tool_settings.proportional_edit_falloff