mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-25 14:11:48 +01:00
Hide themed texture exception when file not found
This commit is contained in:
parent
fe6b2de550
commit
bf25d11cdb
1 changed files with 11 additions and 5 deletions
|
|
@ -47,6 +47,7 @@ internal class UldWidget : IDataWindowWidget
|
||||||
("48 8D 15 ?? ?? ?? ?? 45 33 C0 E9 ?? ?? ?? ??", 3)
|
("48 8D 15 ?? ?? ?? ?? 45 33 C0 E9 ?? ?? ?? ??", 3)
|
||||||
];
|
];
|
||||||
|
|
||||||
|
private DataManager dataManager;
|
||||||
private CancellationTokenSource? cts;
|
private CancellationTokenSource? cts;
|
||||||
private Task<string[]>? uldNamesTask;
|
private Task<string[]>? uldNamesTask;
|
||||||
|
|
||||||
|
|
@ -69,6 +70,8 @@ internal class UldWidget : IDataWindowWidget
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public void Load()
|
public void Load()
|
||||||
{
|
{
|
||||||
|
this.dataManager ??= Service<DataManager>.Get();
|
||||||
|
|
||||||
this.cts?.Cancel();
|
this.cts?.Cancel();
|
||||||
ClearTask(ref this.uldNamesTask);
|
ClearTask(ref this.uldNamesTask);
|
||||||
this.uldNamesTask = null;
|
this.uldNamesTask = null;
|
||||||
|
|
@ -295,11 +298,14 @@ internal class UldWidget : IDataWindowWidget
|
||||||
if (this.selectedTheme != 0)
|
if (this.selectedTheme != 0)
|
||||||
{
|
{
|
||||||
var texturePathThemed = this.ToThemedPath(texturePath);
|
var texturePathThemed = this.ToThemedPath(texturePath);
|
||||||
ImGui.Text($"Themed path at {texturePathThemed}:");
|
if (this.dataManager.FileExists(texturePathThemed))
|
||||||
if (textureManager.Shared.GetFromGame(texturePathThemed).TryGetWrap(out wrap, out e))
|
{
|
||||||
ImGui.Image(wrap.Handle, wrap.Size);
|
ImGui.Text($"Themed path at {texturePathThemed}:");
|
||||||
else if (e is not null)
|
if (textureManager.Shared.GetFromGame(texturePathThemed).TryGetWrap(out wrap, out e))
|
||||||
ImGui.Text(e.ToString());
|
ImGui.Image(wrap.Handle, wrap.Size);
|
||||||
|
else if (e is not null)
|
||||||
|
ImGui.Text(e.ToString());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ImGui.EndTooltip();
|
ImGui.EndTooltip();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue