remove debugging try/catch
This commit is contained in:
parent
6bcbf82b7c
commit
6e9b10d4fd
|
@ -977,8 +977,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
private void DrawCellDrag(PaintEventArgs e)
|
||||
{
|
||||
if (DraggingCell != null)
|
||||
{
|
||||
try
|
||||
{
|
||||
var text = "";
|
||||
if (QueryItemText != null)
|
||||
|
@ -1003,11 +1001,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
Gdi.PrepDrawString(this.NormalFont, this.ForeColor);
|
||||
Gdi.DrawString(text, new Point(x1 + CellWidthPadding, y1 + CellHeightPadding));
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
int zzz = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void DrawColumnText(PaintEventArgs e)
|
||||
|
|
Loading…
Reference in New Issue