Fix T43621: Layout only using 65% of available width
Not really a bug, more like a silly typo.
This commit is contained in:
@@ -174,14 +174,13 @@ class TEXTURE_PT_context_texture(TextureButtonsPanel, Panel):
|
|||||||
if user or pin_id:
|
if user or pin_id:
|
||||||
layout.separator()
|
layout.separator()
|
||||||
|
|
||||||
split = layout.split(percentage=0.65)
|
row = layout.row()
|
||||||
col = split.column()
|
|
||||||
|
|
||||||
if pin_id:
|
if pin_id:
|
||||||
col.template_ID(space, "pin_id")
|
row.template_ID(space, "pin_id")
|
||||||
else:
|
else:
|
||||||
propname = context.texture_user_property.identifier
|
propname = context.texture_user_property.identifier
|
||||||
col.template_ID(user, propname, new="texture.new")
|
row.template_ID(user, propname, new="texture.new")
|
||||||
|
|
||||||
if tex:
|
if tex:
|
||||||
split = layout.split(percentage=0.2)
|
split = layout.split(percentage=0.2)
|
||||||
|
Reference in New Issue
Block a user