Fixed small bug introduced from last commit, added a different cursor for Horizontal Orientation.

This commit is contained in:
kylelyk 2014-09-01 00:45:58 +00:00
parent cdbb1bc13c
commit b5af69a7c5
2 changed files with 16 additions and 2 deletions

View File

@ -1352,7 +1352,7 @@ namespace BizHawk.Client.EmuHawk
}
else
{
newCell.RowIndex = PixelsToRows(x);
newCell.RowIndex = PixelsToRows(y);
}
newCell.Column = ColumnAtX(x);

View File

@ -137,7 +137,21 @@ namespace BizHawk.Client.EmuHawk
if (columnName == MarkerColumnName)
{
text = Global.Emulator.Frame == index ? ">" : string.Empty;
if(Global.Emulator.Frame == index)
{
if(TasView.HorizontalOrientation)
{
text = " V";
}
else
{
text = ">";
}
}
else
{
text = string.Empty;
}
}
else if (columnName == FrameColumnName)
{