mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 16:37:23 +01:00
fix uploads/downloads icon alignment
This commit is contained in:
parent
ee589f78c0
commit
d7121b4ab4
1 changed files with 2 additions and 0 deletions
|
|
@ -324,6 +324,7 @@ public class CompactUi : WindowMediatorSubscriberBase
|
|||
private void DrawTransfers()
|
||||
{
|
||||
var currentUploads = _fileTransferManager.CurrentUploads.ToList();
|
||||
ImGui.AlignTextToFramePadding();
|
||||
_uiSharedService.IconText(FontAwesomeIcon.Upload);
|
||||
ImGui.SameLine(35 * ImGuiHelpers.GlobalScale);
|
||||
|
||||
|
|
@ -349,6 +350,7 @@ public class CompactUi : WindowMediatorSubscriberBase
|
|||
}
|
||||
|
||||
var currentDownloads = _currentDownloads.SelectMany(d => d.Value.Values).ToList();
|
||||
ImGui.AlignTextToFramePadding();
|
||||
_uiSharedService.IconText(FontAwesomeIcon.Download);
|
||||
ImGui.SameLine(35 * ImGuiHelpers.GlobalScale);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue