diff --git a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs index 16dfbc898..bf522a325 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs @@ -1124,6 +1124,14 @@ namespace Dalamud.Interface.Internal.Windows { ImGui.TextWrapped(manifest.Punchline); } + else if (!string.IsNullOrWhiteSpace(manifest.Description)) + { + const int punchlineLen = 200; + + ImGui.TextWrapped(manifest.Description.Length < punchlineLen + ? manifest.Description + : manifest.Description[..punchlineLen]); + } startCursor.Y += sectionSize; ImGui.SetCursorPos(startCursor);