From 78f40844114404bdbe7f00120e02067f1dd29181 Mon Sep 17 00:00:00 2001 From: feos Date: Thu, 30 Jul 2015 21:08:14 +0300 Subject: [PATCH] tastudio: color frame column the same as player 2. this visually separates frame number column from input. could have been done by aligning frame text to the right, but it's not possible right now. --- BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs index 22c0ac06d7..9bd053eb01 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs @@ -144,6 +144,8 @@ namespace BizHawk.Client.EmuHawk { if (Emulator.Frame != index && CurrentTasMovie.Markers.IsMarker(index)) color = Marker_FrameCol; + else + color = Color.FromArgb(32, 0, 0, 0); // same as players 2 and 4 } else if (index == _floatEditRow && columnName == _floatEditColumn) { // SuuperW: Analog editing is indicated by a color change.