Cleanup: remove redundant LMB select default.

This commit is contained in:
Campbell Barton 2019-08-01 17:23:58 +10:00
parent d1848b80f1
commit 46c22f33b2
2 changed files with 0 additions and 4 deletions

View File

@ -28,7 +28,6 @@ class Prefs(bpy.types.KeyConfigPreferences):
description=(
"Mouse button used for selection"
),
default='LEFT',
update=update_fn,
)
spacebar_action: EnumProperty(

View File

@ -607,9 +607,6 @@ UserDef *BKE_blendfile_userdef_from_defaults(void)
/* Init weight paint range. */
BKE_colorband_init(&userdef->coba_weight, true);
/* Default to left click select. */
BKE_keyconfig_pref_set_select_mouse(userdef, 0, true);
/* Default studio light. */
BKE_studiolight_default(userdef->light_param, userdef->light_ambient);