Fix T86200: Properties editor rearranges columns poorly when very wide

Use a regular property split layout instead of a grid flow.
Also fix part of T65393.

Differential Revision: https://developer.blender.org/D13558
This commit is contained in:
Yevgeny Makarov 2022-04-06 17:08:23 -05:00 committed by Hans Goudey
parent f16033c0f5
commit 181d577d7d
Notes: blender-bot 2023-02-14 04:56:36 +01:00
Referenced by issue #86200, Properties editor rearranges columns poorly when very wide
1 changed files with 9 additions and 15 deletions

View File

@ -5,7 +5,7 @@
import bpy
from bpy.types import Panel
from bl_ui.utils import PresetPanel
from .properties_physics_common import (
from bl_ui.properties_physics_common import (
effector_weights_ui,
)
@ -306,21 +306,15 @@ class PHYSICS_PT_borders(PhysicButtonsPanel, Panel):
is_baking_any = domain.is_cache_baking_any
has_baked_data = domain.has_cache_baked_data
flow = layout.grid_flow(row_major=True, columns=0, even_columns=True, even_rows=False, align=False)
flow.enabled = not is_baking_any and not has_baked_data
col = layout.column(align=True)
col.enabled = not is_baking_any and not has_baked_data
col = flow.column()
col.prop(domain, "use_collision_border_front", text="Front")
col = flow.column()
col.prop(domain, "use_collision_border_back", text="Back")
col = flow.column()
col.prop(domain, "use_collision_border_right", text="Right")
col = flow.column()
col.prop(domain, "use_collision_border_left", text="Left")
col = flow.column()
col.prop(domain, "use_collision_border_top", text="Top")
col = flow.column()
col.prop(domain, "use_collision_border_bottom", text="Bottom")
col.prop(domain, "use_collision_border_front")
col.prop(domain, "use_collision_border_back")
col.prop(domain, "use_collision_border_right")
col.prop(domain, "use_collision_border_left")
col.prop(domain, "use_collision_border_top")
col.prop(domain, "use_collision_border_bottom")
class PHYSICS_PT_smoke(PhysicButtonsPanel, Panel):