mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-22 07:47:45 +01:00
fix: remove ambiguity with raw plugins in installer
This commit is contained in:
parent
02204eda7b
commit
e69a76c401
1 changed files with 3 additions and 1 deletions
|
|
@ -460,7 +460,9 @@ namespace Dalamud.Plugin
|
||||||
if (installedPlugin.IsRaw) {
|
if (installedPlugin.IsRaw) {
|
||||||
ImGui.SameLine();
|
ImGui.SameLine();
|
||||||
ImGui.TextColored(new Vector4(1.0f, 0.0f, 0.0f, 1.0f),
|
ImGui.TextColored(new Vector4(1.0f, 0.0f, 0.0f, 1.0f),
|
||||||
" To update or disable this plugin, please remove it from the devPlugins folder.");
|
this.dalamud.PluginRepository.PluginMaster.Any(x => x.InternalName == installedPlugin.Definition.InternalName)
|
||||||
|
? " This plugin is available in one of your repos, please remove it from the devPlugins folder."
|
||||||
|
: " To disable this plugin, please remove it from the devPlugins folder.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue