fix(gui): limit Files & Media collapsible child height to reasonable max
The begin_child() was using (0, -40) which made it stretch to fill parent. Changed to (0, min(len(items) * 30 + 50, 300)) so it: - Sizes to content (30px per row + 50px header) - Caps at 300px max height - Allows scrolling when content overflows
This commit is contained in:
+1
-1
@@ -5,7 +5,7 @@ bias_profile = "Balanced"
|
||||
aggregation_strategy = "auto"
|
||||
|
||||
[[personas.Default.preferred_models]]
|
||||
model = "MiniMax-M2.5"
|
||||
model = "MiniMax-M2.7"
|
||||
provider = "minimax"
|
||||
temperature = 0.0
|
||||
top_p = 1.0
|
||||
|
||||
Reference in New Issue
Block a user