rename DisplayConfigLite to DisplayConfig, it isn't very Lite anymore :)
This commit is contained in:
parent
8eff248d96
commit
8fcd9bb2a5
|
@ -270,11 +270,11 @@
|
|||
<Compile Include="config\ControllerConfig\ControllerConfigPanel.Designer.cs">
|
||||
<DependentUpon>ControllerConfigPanel.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="config\DisplayConfigLite.cs">
|
||||
<Compile Include="config\DisplayConfig.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="config\DisplayConfigLite.Designer.cs">
|
||||
<DependentUpon>DisplayConfigLite.cs</DependentUpon>
|
||||
<Compile Include="config\DisplayConfig.Designer.cs">
|
||||
<DependentUpon>DisplayConfig.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="config\FileExtensionPreferences.cs">
|
||||
<SubType>Form</SubType>
|
||||
|
@ -1328,8 +1328,8 @@
|
|||
<EmbeddedResource Include="config\ControllerConfig\ControllerConfigPanel.resx">
|
||||
<DependentUpon>ControllerConfigPanel.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="config\DisplayConfigLite.resx">
|
||||
<DependentUpon>DisplayConfigLite.cs</DependentUpon>
|
||||
<EmbeddedResource Include="config\DisplayConfig.resx">
|
||||
<DependentUpon>DisplayConfig.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="config\FileExtensionPreferences.resx">
|
||||
|
|
|
@ -3061,7 +3061,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
private void DisplayConfigMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
using var window = new DisplayConfigLite();
|
||||
using var window = new DisplayConfig();
|
||||
var result = window.ShowDialog();
|
||||
if (result == DialogResult.OK)
|
||||
{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
namespace BizHawk.Client.EmuHawk
|
||||
{
|
||||
partial class DisplayConfigLite
|
||||
partial class DisplayConfig
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
|
@ -29,7 +29,7 @@
|
|||
private void InitializeComponent()
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DisplayConfigLite));
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DisplayConfig));
|
||||
this.btnCancel = new System.Windows.Forms.Button();
|
||||
this.btnOk = new System.Windows.Forms.Button();
|
||||
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
||||
|
@ -975,7 +975,7 @@
|
|||
this.Controls.Add(this.btnCancel);
|
||||
this.Controls.Add(this.btnOk);
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||||
this.Name = "DisplayConfigLite";
|
||||
this.Name = "DisplayConfig";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||
this.Text = "Display Configuration";
|
||||
this.groupBox1.ResumeLayout(false);
|
|
@ -6,13 +6,13 @@ using BizHawk.Common;
|
|||
|
||||
namespace BizHawk.Client.EmuHawk
|
||||
{
|
||||
public partial class DisplayConfigLite : Form
|
||||
public partial class DisplayConfig : Form
|
||||
{
|
||||
public bool NeedReset;
|
||||
|
||||
string _pathSelection;
|
||||
|
||||
public DisplayConfigLite()
|
||||
public DisplayConfig()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
Loading…
Reference in New Issue