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:
2026-05-10 16:30:54 -04:00
parent 0f180e8c4b
commit d28fd58f03
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -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