Remove handling of mare server url

This commit is contained in:
Loporrit
2025-07-21 17:06:47 +00:00
parent 86aa5639f3
commit 10b11e0f37
5 changed files with 0 additions and 57 deletions

View File

@@ -95,17 +95,6 @@ public class PopoutProfileUi : WindowMediatorSubscriberBase
_textureWrap = _uiSharedService.LoadImage(_lastProfilePicture);
}
if (_supporterTextureWrap == null || !mareProfile.SupporterImageData.Value.SequenceEqual(_lastSupporterPicture))
{
_supporterTextureWrap?.Dispose();
_supporterTextureWrap = null;
if (!string.IsNullOrEmpty(mareProfile.Base64SupporterPicture))
{
_lastSupporterPicture = mareProfile.SupporterImageData.Value;
_supporterTextureWrap = _uiSharedService.LoadImage(_lastSupporterPicture);
}
}
var drawList = ImGui.GetWindowDrawList();
var rectMin = drawList.GetClipRectMin();
var rectMax = drawList.GetClipRectMax();