mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-23 16:27:44 +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.Text("Search: ");
|
||||
ImGui.Text(Loc.Localize("DalamudItemSearchVerb", "Search: "));
|
||||
ImGui.SameLine();
|
||||
ImGui.InputText("##searchbox", ref this.searchText, 32);
|
||||
|
||||
|
|
@ -152,7 +152,7 @@ namespace Dalamud.Interface
|
|||
iconTex.Header.Height, 4);
|
||||
} catch (Exception ex)
|
||||
{
|
||||
Log.Debug("Failed loading item texture");
|
||||
Log.Error(ex, "Failed loading item texture");
|
||||
this.selectedItemTex?.Dispose();
|
||||
this.selectedItemTex = null;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue