mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 06:13:40 +01:00
fix: log item texture fail as error, unlocalized string
This commit is contained in:
parent
0bd0efbd5b
commit
a72536603b
1 changed files with 2 additions and 2 deletions
|
|
@ -81,7 +81,7 @@ namespace Dalamud.Interface
|
||||||
ImGui.Separator();
|
ImGui.Separator();
|
||||||
|
|
||||||
|
|
||||||
ImGui.Text("Search: ");
|
ImGui.Text(Loc.Localize("DalamudItemSearchVerb", "Search: "));
|
||||||
ImGui.SameLine();
|
ImGui.SameLine();
|
||||||
ImGui.InputText("##searchbox", ref this.searchText, 32);
|
ImGui.InputText("##searchbox", ref this.searchText, 32);
|
||||||
|
|
||||||
|
|
@ -152,7 +152,7 @@ namespace Dalamud.Interface
|
||||||
iconTex.Header.Height, 4);
|
iconTex.Header.Height, 4);
|
||||||
} catch (Exception ex)
|
} catch (Exception ex)
|
||||||
{
|
{
|
||||||
Log.Debug("Failed loading item texture");
|
Log.Error(ex, "Failed loading item texture");
|
||||||
this.selectedItemTex?.Dispose();
|
this.selectedItemTex?.Dispose();
|
||||||
this.selectedItemTex = null;
|
this.selectedItemTex = null;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue