mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
fix: don't show punchline if a plugin is troublesome
This commit is contained in:
parent
6ea7273e04
commit
e153e73e77
1 changed files with 1 additions and 1 deletions
|
|
@ -1629,7 +1629,7 @@ internal class PluginInstallerWindow : Window, IDisposable
|
|||
ImGui.SetCursorPosX(cursor.X);
|
||||
|
||||
// Description
|
||||
if (plugin is null or { IsOutdated: false, IsBanned: false })
|
||||
if (plugin is null or { IsOutdated: false, IsBanned: false } && !trouble)
|
||||
{
|
||||
if (!string.IsNullOrWhiteSpace(manifest.Punchline))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue