mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-25 22:21:49 +01:00
Fix missing directory separator in theme path
This commit is contained in:
parent
fc130e325c
commit
fe6b2de550
1 changed files with 1 additions and 1 deletions
|
|
@ -264,7 +264,7 @@ internal class UldWidget : IDataWindowWidget
|
||||||
}
|
}
|
||||||
|
|
||||||
private string ToThemedPath(string path) =>
|
private string ToThemedPath(string path) =>
|
||||||
UldBaseBath + (this.selectedTheme > 0 ? $"img{this.selectedTheme:D2}" : string.Empty) + path[UldBaseBath.Length..];
|
UldBaseBath + (this.selectedTheme > 0 ? $"img{this.selectedTheme:D2}/" : string.Empty) + path[UldBaseBath.Length..];
|
||||||
|
|
||||||
private void DrawTextureEntry(UldRoot.TextureEntry textureEntry, TextureManager textureManager)
|
private void DrawTextureEntry(UldRoot.TextureEntry textureEntry, TextureManager textureManager)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue