diff --git a/Dalamud/Dalamud.csproj b/Dalamud/Dalamud.csproj index 8eda0e7d1..2f1b3a431 100644 --- a/Dalamud/Dalamud.csproj +++ b/Dalamud/Dalamud.csproj @@ -68,6 +68,7 @@ + diff --git a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs index 73aecf19b..ec014d013 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs @@ -1127,7 +1127,7 @@ namespace Dalamud.Interface.Internal.Windows else if (!string.IsNullOrWhiteSpace(manifest.Description)) { const int punchlineLen = 200; - var firstLine = manifest.Description.Split(new [] { '\r', '\n' })[0]; + var firstLine = manifest.Description.Split(new[] { '\r', '\n' })[0]; ImGui.TextWrapped(firstLine.Length < punchlineLen ? firstLine