Fix #128672: Brush Assets: Wrong catalogs in asset shelf by default

Mistake in `catalog_path` name

Pull Request: https://projects.blender.org/blender/blender/pulls/128681
This commit is contained in:
Pratik Borhade
2024-10-14 14:10:21 +02:00
committed by Pratik Borhade
parent 39c1127dc0
commit 373d77aeb6

View File

@@ -1493,11 +1493,11 @@ UserDef *BKE_blendfile_userdef_from_defaults()
{
BKE_preferences_asset_shelf_settings_ensure_catalog_path_enabled(
userdef, "VIEW3D_AST_brush_sculpt", "Brushes/Mesh/Sculpt/Cloth");
userdef, "VIEW3D_AST_brush_sculpt", "Brushes/Mesh Sculpt/Cloth");
BKE_preferences_asset_shelf_settings_ensure_catalog_path_enabled(
userdef, "VIEW3D_AST_brush_sculpt", "Brushes/Mesh/Sculpt/General");
userdef, "VIEW3D_AST_brush_sculpt", "Brushes/Mesh Sculpt/General");
BKE_preferences_asset_shelf_settings_ensure_catalog_path_enabled(
userdef, "VIEW3D_AST_brush_sculpt", "Brushes/Mesh/Sculpt/Painting");
userdef, "VIEW3D_AST_brush_sculpt", "Brushes/Mesh Sculpt/Paint");
}
return userdef;