It's Fullscreen, not fullscreen or FullScreen.

This commit is contained in:
hegyak 2014-10-27 21:19:48 +00:00
parent daf74eb91b
commit 975492b4de
2 changed files with 15 additions and 15 deletions

View File

@ -42,7 +42,7 @@
this.AcceptBackgroundInputCheckbox = new System.Windows.Forms.CheckBox(); this.AcceptBackgroundInputCheckbox = new System.Windows.Forms.CheckBox();
this.label1 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label();
this.RunInBackgroundCheckbox = new System.Windows.Forms.CheckBox(); this.RunInBackgroundCheckbox = new System.Windows.Forms.CheckBox();
this.ShowMenuInFullScreenCheckbox = new System.Windows.Forms.CheckBox(); this.ShowMenuInFullscreenCheckbox = new System.Windows.Forms.CheckBox();
this.SaveWindowPositionCheckbox = new System.Windows.Forms.CheckBox(); this.SaveWindowPositionCheckbox = new System.Windows.Forms.CheckBox();
this.EnableContextMenuCheckbox = new System.Windows.Forms.CheckBox(); this.EnableContextMenuCheckbox = new System.Windows.Forms.CheckBox();
this.StartPausedCheckbox = new System.Windows.Forms.CheckBox(); this.StartPausedCheckbox = new System.Windows.Forms.CheckBox();
@ -144,7 +144,7 @@
this.tabPage1.Controls.Add(this.AcceptBackgroundInputCheckbox); this.tabPage1.Controls.Add(this.AcceptBackgroundInputCheckbox);
this.tabPage1.Controls.Add(this.label1); this.tabPage1.Controls.Add(this.label1);
this.tabPage1.Controls.Add(this.RunInBackgroundCheckbox); this.tabPage1.Controls.Add(this.RunInBackgroundCheckbox);
this.tabPage1.Controls.Add(this.ShowMenuInFullScreenCheckbox); this.tabPage1.Controls.Add(this.ShowMenuInFullscreenCheckbox);
this.tabPage1.Controls.Add(this.SaveWindowPositionCheckbox); this.tabPage1.Controls.Add(this.SaveWindowPositionCheckbox);
this.tabPage1.Controls.Add(this.EnableContextMenuCheckbox); this.tabPage1.Controls.Add(this.EnableContextMenuCheckbox);
this.tabPage1.Controls.Add(this.StartPausedCheckbox); this.tabPage1.Controls.Add(this.StartPausedCheckbox);
@ -162,9 +162,9 @@
this.StartFullScreenCheckbox.AutoSize = true; this.StartFullScreenCheckbox.AutoSize = true;
this.StartFullScreenCheckbox.Location = new System.Drawing.Point(104, 100); this.StartFullScreenCheckbox.Location = new System.Drawing.Point(104, 100);
this.StartFullScreenCheckbox.Name = "StartFullScreenCheckbox"; this.StartFullScreenCheckbox.Name = "StartFullScreenCheckbox";
this.StartFullScreenCheckbox.Size = new System.Drawing.Size(107, 17); this.StartFullScreenCheckbox.Size = new System.Drawing.Size(110, 17);
this.StartFullScreenCheckbox.TabIndex = 13; this.StartFullScreenCheckbox.TabIndex = 13;
this.StartFullScreenCheckbox.Text = "Start in fullscreen"; this.StartFullScreenCheckbox.Text = "Start in Fullscreen";
this.StartFullScreenCheckbox.UseVisualStyleBackColor = true; this.StartFullScreenCheckbox.UseVisualStyleBackColor = true;
// //
// label14 // label14
@ -243,15 +243,15 @@
this.RunInBackgroundCheckbox.Text = "Run in background"; this.RunInBackgroundCheckbox.Text = "Run in background";
this.RunInBackgroundCheckbox.UseVisualStyleBackColor = true; this.RunInBackgroundCheckbox.UseVisualStyleBackColor = true;
// //
// ShowMenuInFullScreenCheckbox // ShowMenuInFullscreenCheckbox
// //
this.ShowMenuInFullScreenCheckbox.AutoSize = true; this.ShowMenuInFullscreenCheckbox.AutoSize = true;
this.ShowMenuInFullScreenCheckbox.Location = new System.Drawing.Point(6, 40); this.ShowMenuInFullscreenCheckbox.Location = new System.Drawing.Point(6, 40);
this.ShowMenuInFullScreenCheckbox.Name = "ShowMenuInFullScreenCheckbox"; this.ShowMenuInFullscreenCheckbox.Name = "ShowMenuInFullscreenCheckbox";
this.ShowMenuInFullScreenCheckbox.Size = new System.Drawing.Size(147, 17); this.ShowMenuInFullscreenCheckbox.Size = new System.Drawing.Size(145, 17);
this.ShowMenuInFullScreenCheckbox.TabIndex = 1; this.ShowMenuInFullscreenCheckbox.TabIndex = 1;
this.ShowMenuInFullScreenCheckbox.Text = "Show Menu in FullScreen"; this.ShowMenuInFullscreenCheckbox.Text = "Show Menu in Fullscreen";
this.ShowMenuInFullScreenCheckbox.UseVisualStyleBackColor = true; this.ShowMenuInFullscreenCheckbox.UseVisualStyleBackColor = true;
// //
// SaveWindowPositionCheckbox // SaveWindowPositionCheckbox
// //
@ -786,7 +786,7 @@
private System.Windows.Forms.CheckBox PauseWhenMenuActivatedCheckbox; private System.Windows.Forms.CheckBox PauseWhenMenuActivatedCheckbox;
private System.Windows.Forms.CheckBox EnableContextMenuCheckbox; private System.Windows.Forms.CheckBox EnableContextMenuCheckbox;
private System.Windows.Forms.CheckBox SaveWindowPositionCheckbox; private System.Windows.Forms.CheckBox SaveWindowPositionCheckbox;
private System.Windows.Forms.CheckBox ShowMenuInFullScreenCheckbox; private System.Windows.Forms.CheckBox ShowMenuInFullscreenCheckbox;
private System.Windows.Forms.CheckBox RunInBackgroundCheckbox; private System.Windows.Forms.CheckBox RunInBackgroundCheckbox;
private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label2;

View File

@ -25,7 +25,7 @@ namespace BizHawk.Client.EmuHawk
PauseWhenMenuActivatedCheckbox.Checked = Global.Config.PauseWhenMenuActivated; PauseWhenMenuActivatedCheckbox.Checked = Global.Config.PauseWhenMenuActivated;
EnableContextMenuCheckbox.Checked = Global.Config.ShowContextMenu; EnableContextMenuCheckbox.Checked = Global.Config.ShowContextMenu;
SaveWindowPositionCheckbox.Checked = Global.Config.SaveWindowPosition; SaveWindowPositionCheckbox.Checked = Global.Config.SaveWindowPosition;
ShowMenuInFullScreenCheckbox.Checked = Global.Config.ShowMenuInFullscreen; ShowMenuInFullscreenCheckbox.Checked = Global.Config.ShowMenuInFullscreen;
RunInBackgroundCheckbox.Checked = Global.Config.RunInBackground; RunInBackgroundCheckbox.Checked = Global.Config.RunInBackground;
AcceptBackgroundInputCheckbox.Checked = Global.Config.AcceptBackgroundInput; AcceptBackgroundInputCheckbox.Checked = Global.Config.AcceptBackgroundInput;
NeverAskSaveCheckbox.Checked = Global.Config.SupressAskSave; NeverAskSaveCheckbox.Checked = Global.Config.SupressAskSave;
@ -63,7 +63,7 @@ namespace BizHawk.Client.EmuHawk
Global.Config.PauseWhenMenuActivated = PauseWhenMenuActivatedCheckbox.Checked; Global.Config.PauseWhenMenuActivated = PauseWhenMenuActivatedCheckbox.Checked;
Global.Config.ShowContextMenu = EnableContextMenuCheckbox.Checked; Global.Config.ShowContextMenu = EnableContextMenuCheckbox.Checked;
Global.Config.SaveWindowPosition = SaveWindowPositionCheckbox.Checked; Global.Config.SaveWindowPosition = SaveWindowPositionCheckbox.Checked;
Global.Config.ShowMenuInFullscreen = ShowMenuInFullScreenCheckbox.Checked; Global.Config.ShowMenuInFullscreen = ShowMenuInFullscreenCheckbox.Checked;
Global.Config.RunInBackground = RunInBackgroundCheckbox.Checked; Global.Config.RunInBackground = RunInBackgroundCheckbox.Checked;
Global.Config.AcceptBackgroundInput = AcceptBackgroundInputCheckbox.Checked; Global.Config.AcceptBackgroundInput = AcceptBackgroundInputCheckbox.Checked;
Global.Config.SupressAskSave = NeverAskSaveCheckbox.Checked; Global.Config.SupressAskSave = NeverAskSaveCheckbox.Checked;