mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-25 18:46:58 +01:00
Removed old references to properties. Set some fields to private.
This commit is contained in:
parent
ff3ab9905c
commit
4cb0548947
2
DS4Windows/DS4Forms/DS4Form.Designer.cs
generated
2
DS4Windows/DS4Forms/DS4Form.Designer.cs
generated
@ -1153,9 +1153,7 @@
|
||||
// languagePackComboBox1
|
||||
//
|
||||
resources.ApplyResources(this.languagePackComboBox1, "languagePackComboBox1");
|
||||
this.languagePackComboBox1.LanguageAssemblyName = "DS4Windows.resources.dll";
|
||||
this.languagePackComboBox1.Name = "languagePackComboBox1";
|
||||
this.languagePackComboBox1.ProbingPath = "Lang";
|
||||
this.languagePackComboBox1.SelectedValueChanged += new System.EventHandler(this.languagePackComboBox1_SelectedValueChanged);
|
||||
//
|
||||
// flowLayoutPanel1
|
||||
|
@ -17,10 +17,10 @@ namespace DS4Windows.DS4Forms
|
||||
private TaskCompletionSource<bool> LanguageListInitialized = new TaskCompletionSource<bool>();
|
||||
|
||||
// If probing path has been changed in App.config, add the same string here.
|
||||
public string ProbingPath = "Lang";
|
||||
private string ProbingPath = "Lang";
|
||||
|
||||
// Filter language assembly file names in order to ont include irrelevant assemblies to the combo box.
|
||||
public string LanguageAssemblyName = "DS4Windows.resources.dll";
|
||||
private string LanguageAssemblyName = "DS4Windows.resources.dll";
|
||||
|
||||
[Category("Action")]
|
||||
[Description("Fires when the combo box selected index is changed.")]
|
||||
|
Loading…
Reference in New Issue
Block a user