Fixed small bug introduced from last commit, added a different cursor for Horizontal Orientation.
This commit is contained in:
parent
cdbb1bc13c
commit
b5af69a7c5
|
@ -1352,7 +1352,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
newCell.RowIndex = PixelsToRows(x);
|
newCell.RowIndex = PixelsToRows(y);
|
||||||
}
|
}
|
||||||
|
|
||||||
newCell.Column = ColumnAtX(x);
|
newCell.Column = ColumnAtX(x);
|
||||||
|
|
|
@ -137,7 +137,21 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
if (columnName == MarkerColumnName)
|
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)
|
else if (columnName == FrameColumnName)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue