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