You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is border select when LMB-clicking-and-dragging
But it needs some modal settings to work correctly,
that I think will override the setting when firing it from anywhere else
Here are the modal settigs mentioned above:
km = kc.keymaps.new('Gesture Border', space_type='EMPTY', region_type='WINDOW', modal=True)
addon_keymaps.append(km)
This is border select when LMB-clicking-and-dragging
But it needs some modal settings to work correctly,
that I think will override the setting when firing it from anywhere else
kmi = km.keymap_items.new('view3d.select_border', 'EVT_TWEAK_L', 'ANY')
kmi_props_setattr(kmi.properties, 'extend', False)
kmi = km.keymap_items.new('view3d.select_border', 'EVT_TWEAK_L', 'ANY', shift=True)
kmi = km.keymap_items.new('view3d.select_border', 'EVT_TWEAK_L', 'ANY', ctrl=True)
kmi_props_setattr(kmi.properties, 'extend', False)
Here are the modal settigs mentioned above:
km = kc.keymaps.new('Gesture Border', space_type='EMPTY', region_type='WINDOW', modal=True)
addon_keymaps.append(km)
The text was updated successfully, but these errors were encountered: