csharpdeeb25a2 | 1 | #nullable enable |
| 2 | |
| 3 | namespace CascadeIDE.Views.Chat.Skia; |
| 4 | |
| 5 | /// <summary>Guards Intercom Skia measure/paint from unbounded line count (UI freeze on long messages).</summary> |
| 6 | internal static class SkiaChatRenderLimits |
| 7 | { |
| 8 | /// <summary>Default when <see cref="SkiaChatBubbleSpec.MaxBodyLines"/> is unset (<c>int.MaxValue</c>).</summary> |
| 9 | public const int MaxProseBodyLines = 128; |
| 10 | |
| 11 | /// <summary>Slash-command /help detail and block markdown document.</summary> |
| 12 | public const int MaxDocumentRows = 256; |
| 13 | } |
| 14 | |
View only · write via MCP/CIDE