mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 21:27:21 +01:00
add total count on mouseover, make syncshell windows non-blocking
This commit is contained in:
parent
d7bfa2147f
commit
984ee08a2b
12 changed files with 73 additions and 62 deletions
|
|
@ -21,8 +21,8 @@ public class DrawFolderGroup : DrawFolderBase
|
|||
|
||||
public DrawFolderGroup(string id, GroupFullInfoDto groupFullInfoDto, ApiController apiController,
|
||||
IEnumerable<DrawUserPair> drawPairs, TagHandler tagHandler, IdDisplayHandler idDisplayHandler,
|
||||
MareMediator mareMediator) :
|
||||
base(id, drawPairs, tagHandler)
|
||||
MareMediator mareMediator, int totalPairs) :
|
||||
base(id, drawPairs, tagHandler, totalPairs)
|
||||
{
|
||||
_groupFullInfoDto = groupFullInfoDto;
|
||||
_apiController = apiController;
|
||||
|
|
@ -53,7 +53,7 @@ public class DrawFolderGroup : DrawFolderBase
|
|||
ImGui.SetCursorPosY(textPosY);
|
||||
ImGui.TextUnformatted("[" + OnlinePairs.ToString() + "]");
|
||||
}
|
||||
UiSharedService.AttachToolTip(OnlinePairs + " online in this syncshell");
|
||||
UiSharedService.AttachToolTip(OnlinePairs + " online" + Environment.NewLine + TotalPairs + " total");
|
||||
|
||||
ImGui.SameLine();
|
||||
if (IsOwner)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue