2.0.0 #92

Merged
defnotken merged 171 commits from 2.0.0 into master 2025-12-21 17:19:36 +00:00
Showing only changes of commit bdfcf254a8 - Show all commits

View File

@@ -854,12 +854,12 @@ public class SyncshellAdminUI : WindowMediatorSubscriberBase
var boolcolor = UiSharedService.GetBoolColor(pair.IsOnline); var boolcolor = UiSharedService.GetBoolColor(pair.IsOnline);
UiSharedService.ColorText(text, boolcolor); UiSharedService.ColorText(text, boolcolor);
if (ImGui.IsItemClicked()) if (ImGui.IsItemClicked())
ImGui.SetClipboardText(text); ImGui.SetClipboardText(pair.UserData.AliasOrUID);
if (!string.IsNullOrEmpty(pair.PlayerName)) if (!string.IsNullOrEmpty(pair.PlayerName))
UiSharedService.AttachToolTip(pair.PlayerName); UiSharedService.AttachToolTip(pair.PlayerName + $"{Environment.NewLine}Click to copy UID or Alias");
DrawUserActions(pair, GroupFullInfo, userInfo, isUserOwner, baselineY); DrawUserActions(pair, GroupFullInfo, userInfo, isUserOwner, baselineY);