From ac2c42ef74fd7dd94010cc5a4ab0e777e515a9c8 Mon Sep 17 00:00:00 2001 From: Zinfidel Date: Wed, 27 Nov 2019 21:46:49 -0800 Subject: [PATCH] Correct tab size inconsistency --- BizHawk.Client.Common/tools/Watch/WatchList/WatchList.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BizHawk.Client.Common/tools/Watch/WatchList/WatchList.cs b/BizHawk.Client.Common/tools/Watch/WatchList/WatchList.cs index c032833f63..f259f95784 100644 --- a/BizHawk.Client.Common/tools/Watch/WatchList/WatchList.cs +++ b/BizHawk.Client.Common/tools/Watch/WatchList/WatchList.cs @@ -232,9 +232,9 @@ namespace BizHawk.Client.Common public void OrderWatches(string column, bool reverse) { var separatorIndices = _watchList.Select((w, i) => new { watch = w, index = i }) - .Where(w => w.watch.IsSeparator) - .Select(w => w.index) - .ToList(); + .Where(w => w.watch.IsSeparator) + .Select(w => w.index) + .ToList(); separatorIndices.Add(_watchList.Count);