From 10b9621079823048e73d4677413bc5e59f833dcf Mon Sep 17 00:00:00 2001 From: Romain Toumi Date: Mon, 2 Aug 2021 19:54:04 +0200 Subject: Fix Cycles material slots list being too short Bring it in line with Eevee. Differential Revision: https://developer.blender.org/D11982 --- intern/cycles/blender/addon/ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'intern') diff --git a/intern/cycles/blender/addon/ui.py b/intern/cycles/blender/addon/ui.py index 8846c621529..336fb02ba36 100644 --- a/intern/cycles/blender/addon/ui.py +++ b/intern/cycles/blender/addon/ui.py @@ -1102,7 +1102,7 @@ class CYCLES_PT_context_material(CyclesButtonsPanel, Panel): if ob: is_sortable = len(ob.material_slots) > 1 - rows = 1 + rows = 3 if (is_sortable): rows = 4 -- cgit v1.2.3