WIP: Brush assets project #106303

Draft
Julian Eisel wants to merge 351 commits from brush-assets-project into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 0ad37cc012 - Show all commits

View File

@ -59,11 +59,11 @@ class DATA_PT_curves_surface(DataButtonsPanel, Panel):
layout.prop(ob.data, "surface")
has_surface = ob.data.surface is not None
if has_surface:
layout.prop_search(ob.data, "surface_uv_map", ob.data.surface.data, "uv_layers", text="UV Map")
layout.prop_search(ob.data, "surface_uv_map", ob.data.surface.data, "uv_layers", text="UV Map", icon='GROUP_UVS')
else:
row = layout.row()
row.prop(ob.data, "surface_uv_map", text="UV Map")
row.enabled = has_surface
row.active = has_surface
class CURVES_MT_add_attribute(Menu):