From 975492b4de4200808a69ee9b1f990deef6f0a4b8 Mon Sep 17 00:00:00 2001 From: hegyak Date: Mon, 27 Oct 2014 21:19:48 +0000 Subject: [PATCH] It's Fullscreen, not fullscreen or FullScreen. --- .../config/GuiOptions.Designer.cs | 26 +++++++++---------- BizHawk.Client.EmuHawk/config/GuiOptions.cs | 4 +-- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/BizHawk.Client.EmuHawk/config/GuiOptions.Designer.cs b/BizHawk.Client.EmuHawk/config/GuiOptions.Designer.cs index 3f94247d4d..42aa42fca5 100644 --- a/BizHawk.Client.EmuHawk/config/GuiOptions.Designer.cs +++ b/BizHawk.Client.EmuHawk/config/GuiOptions.Designer.cs @@ -42,7 +42,7 @@ this.AcceptBackgroundInputCheckbox = new System.Windows.Forms.CheckBox(); this.label1 = new System.Windows.Forms.Label(); 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.EnableContextMenuCheckbox = 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.label1); 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.EnableContextMenuCheckbox); this.tabPage1.Controls.Add(this.StartPausedCheckbox); @@ -162,9 +162,9 @@ this.StartFullScreenCheckbox.AutoSize = true; this.StartFullScreenCheckbox.Location = new System.Drawing.Point(104, 100); 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.Text = "Start in fullscreen"; + this.StartFullScreenCheckbox.Text = "Start in Fullscreen"; this.StartFullScreenCheckbox.UseVisualStyleBackColor = true; // // label14 @@ -243,15 +243,15 @@ this.RunInBackgroundCheckbox.Text = "Run in background"; this.RunInBackgroundCheckbox.UseVisualStyleBackColor = true; // - // ShowMenuInFullScreenCheckbox + // ShowMenuInFullscreenCheckbox // - this.ShowMenuInFullScreenCheckbox.AutoSize = true; - this.ShowMenuInFullScreenCheckbox.Location = new System.Drawing.Point(6, 40); - this.ShowMenuInFullScreenCheckbox.Name = "ShowMenuInFullScreenCheckbox"; - this.ShowMenuInFullScreenCheckbox.Size = new System.Drawing.Size(147, 17); - this.ShowMenuInFullScreenCheckbox.TabIndex = 1; - this.ShowMenuInFullScreenCheckbox.Text = "Show Menu in FullScreen"; - this.ShowMenuInFullScreenCheckbox.UseVisualStyleBackColor = true; + this.ShowMenuInFullscreenCheckbox.AutoSize = true; + this.ShowMenuInFullscreenCheckbox.Location = new System.Drawing.Point(6, 40); + this.ShowMenuInFullscreenCheckbox.Name = "ShowMenuInFullscreenCheckbox"; + this.ShowMenuInFullscreenCheckbox.Size = new System.Drawing.Size(145, 17); + this.ShowMenuInFullscreenCheckbox.TabIndex = 1; + this.ShowMenuInFullscreenCheckbox.Text = "Show Menu in Fullscreen"; + this.ShowMenuInFullscreenCheckbox.UseVisualStyleBackColor = true; // // SaveWindowPositionCheckbox // @@ -786,7 +786,7 @@ private System.Windows.Forms.CheckBox PauseWhenMenuActivatedCheckbox; private System.Windows.Forms.CheckBox EnableContextMenuCheckbox; 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.Label label1; private System.Windows.Forms.Label label2; diff --git a/BizHawk.Client.EmuHawk/config/GuiOptions.cs b/BizHawk.Client.EmuHawk/config/GuiOptions.cs index 3df621b5d5..0424df85a1 100644 --- a/BizHawk.Client.EmuHawk/config/GuiOptions.cs +++ b/BizHawk.Client.EmuHawk/config/GuiOptions.cs @@ -25,7 +25,7 @@ namespace BizHawk.Client.EmuHawk PauseWhenMenuActivatedCheckbox.Checked = Global.Config.PauseWhenMenuActivated; EnableContextMenuCheckbox.Checked = Global.Config.ShowContextMenu; SaveWindowPositionCheckbox.Checked = Global.Config.SaveWindowPosition; - ShowMenuInFullScreenCheckbox.Checked = Global.Config.ShowMenuInFullscreen; + ShowMenuInFullscreenCheckbox.Checked = Global.Config.ShowMenuInFullscreen; RunInBackgroundCheckbox.Checked = Global.Config.RunInBackground; AcceptBackgroundInputCheckbox.Checked = Global.Config.AcceptBackgroundInput; NeverAskSaveCheckbox.Checked = Global.Config.SupressAskSave; @@ -63,7 +63,7 @@ namespace BizHawk.Client.EmuHawk Global.Config.PauseWhenMenuActivated = PauseWhenMenuActivatedCheckbox.Checked; Global.Config.ShowContextMenu = EnableContextMenuCheckbox.Checked; Global.Config.SaveWindowPosition = SaveWindowPositionCheckbox.Checked; - Global.Config.ShowMenuInFullscreen = ShowMenuInFullScreenCheckbox.Checked; + Global.Config.ShowMenuInFullscreen = ShowMenuInFullscreenCheckbox.Checked; Global.Config.RunInBackground = RunInBackgroundCheckbox.Checked; Global.Config.AcceptBackgroundInput = AcceptBackgroundInputCheckbox.Checked; Global.Config.SupressAskSave = NeverAskSaveCheckbox.Checked;