tastudio: detach screenshot popup timer since it crashes
This commit is contained in:
parent
e99b52342c
commit
1827f44fb8
|
@ -17,8 +17,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
public partial class ScreenshotForm : Form
|
||||
{
|
||||
private Timer _showTimer;
|
||||
private Timer _hideTimer;
|
||||
private Timer _showTimer = new Timer();
|
||||
private Timer _hideTimer = new Timer();
|
||||
public TasBranch Branch { get; set; }
|
||||
new public Font Font;
|
||||
public FontStyle FontStyle;
|
||||
|
@ -31,9 +31,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
InitializeComponent();
|
||||
|
||||
_showTimer = new Timer(components);
|
||||
_hideTimer = new Timer(components);
|
||||
|
||||
Width = 320;
|
||||
Height = 240;
|
||||
FontSize = 10;
|
||||
|
|
Loading…
Reference in New Issue