Toggle Fullscreen - change from double-click to shift+double-click

This commit is contained in:
adelikat 2014-05-16 12:49:19 +00:00
parent c702bc03f2
commit f975e3da8b
1 changed files with 3 additions and 2 deletions

View File

@ -53,11 +53,12 @@ namespace BizHawk.Client.EmuHawk
private void HandleFullscreenToggle(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
if (e.Button == MouseButtons.Left && Control.ModifierKeys == Keys.Shift)
{
GlobalWin.MainForm.ToggleFullscreen();
}
}
public bool Resized { get; set; }
public Size NativeSize { get { return GraphicsControl.ClientSize; } }