From 9bf1a7cf36b254245e7d5fd50ec53f0b06840493 Mon Sep 17 00:00:00 2001 From: Stanley Dimant Date: Tue, 21 Jun 2022 14:57:29 +0200 Subject: [PATCH] ah yes forgot to remove commented out code --- MareSynchronos/UI/PluginUI.cs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/MareSynchronos/UI/PluginUI.cs b/MareSynchronos/UI/PluginUI.cs index a832b6c..b3768be 100644 --- a/MareSynchronos/UI/PluginUI.cs +++ b/MareSynchronos/UI/PluginUI.cs @@ -202,15 +202,6 @@ namespace MareSynchronos.UI ? "Has not added you" : ((item.IsPaused || item.IsPausedFromOthers) ? "Unpaired" : "Paired"); ImGui.TextColored(UIShared.GetBoolColor(item.IsSynced && !item.IsPaused && !item.IsPausedFromOthers), pairString); - /*string pauseYou = item.IsPaused ? "You paused them" : ""; - string pauseThey = item.IsPausedFromOthers ? "They paused you" : ""; - string separator = (item.IsPaused && item.IsPausedFromOthers) ? Environment.NewLine : ""; - string entry = pauseYou + separator + pauseThey; - if (!string.IsNullOrEmpty(entry)) - { - ImGui.TextColored(UIShared.GetBoolColor(!item.IsPausedFromOthers && !item.IsPaused), entry); - }*/ - ImGui.TableNextColumn(); string charComment = _configuration.UidComments.ContainsKey(item.OtherUID) ? _configuration.UidComments[item.OtherUID] : string.Empty; ImGui.SetNextItemWidth(400);