Skip to content

Commit

Permalink
ExposedPlugin: correctly indicate whether a plugin has a config UI
Browse files Browse the repository at this point in the history
  • Loading branch information
goaaats committed Jul 22, 2024
1 parent 2335c49 commit 849f84e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dalamud/Plugin/InstalledPluginState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ internal sealed class ExposedPlugin(LocalPlugin plugin) : IExposedPlugin
public bool HasMainUi => plugin.DalamudInterface?.LocalUiBuilder.HasMainUi ?? false;

/// <inheritdoc/>
public bool HasConfigUi => plugin.DalamudInterface?.LocalUiBuilder.HasMainUi ?? false;
public bool HasConfigUi => plugin.DalamudInterface?.LocalUiBuilder.HasConfigUi ?? false;

/// <inheritdoc/>
public void OpenMainUi()
Expand Down

0 comments on commit 849f84e

Please sign in to comment.