Access const as non instance

This commit is contained in:
wolfcomp 2025-12-19 11:51:09 +01:00 committed by GitHub
parent 4ddaaf3809
commit c71d8889d7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -263,7 +263,7 @@ internal class UldWidget : IDataWindowWidget
} }
private string ToThemedPath(string path) => private string ToThemedPath(string path) =>
this.UldBaseBath + (this.selectedTheme > 0 ? $"img{this.selectedTheme:D2}" : "") + path[this.UldBaseBath.Length..]; UldBaseBath + (this.selectedTheme > 0 ? $"img{this.selectedTheme:D2}" : "") + path[UldBaseBath.Length..];
private void DrawTextureEntry(UldRoot.TextureEntry textureEntry, TextureManager textureManager) private void DrawTextureEntry(UldRoot.TextureEntry textureEntry, TextureManager textureManager)
{ {