fix tags pausing/resuming, give back owner the same rights as mod

This commit is contained in:
rootdarkarchon
2023-01-29 18:05:12 +01:00
parent d47b4f52ec
commit d7cad81eb0
3 changed files with 17 additions and 17 deletions

View File

@@ -49,7 +49,7 @@ namespace MareSynchronos.UI.Components
if (visiblePairsInThisTag.Any() || onlinePairsInThisTag.Any() || offlinePairsInThisTag.Any())
{
DrawName(tag);
UiShared.DrawWithID($"group-{tag}-buttons", () => DrawButtons(tag, visiblePairsInThisTag));
UiShared.DrawWithID($"group-{tag}-buttons", () => DrawButtons(tag, visiblePairsInThisTag.Concat(onlinePairsInThisTag).Concat(offlinePairsInThisTag).ToList()));
if (_tagHandler.IsTagOpen(tag))
{
ImGui.Indent(20);