diff --git a/DS4Windows/DS4Forms/DS4Form.Designer.cs b/DS4Windows/DS4Forms/DS4Form.Designer.cs index a06f068..2f7857c 100644 --- a/DS4Windows/DS4Forms/DS4Form.Designer.cs +++ b/DS4Windows/DS4Forms/DS4Form.Designer.cs @@ -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 diff --git a/DS4Windows/DS4Forms/LanguagePackComboBox.cs b/DS4Windows/DS4Forms/LanguagePackComboBox.cs index c7ce483..e065aca 100644 --- a/DS4Windows/DS4Forms/LanguagePackComboBox.cs +++ b/DS4Windows/DS4Forms/LanguagePackComboBox.cs @@ -17,10 +17,10 @@ namespace DS4Windows.DS4Forms private TaskCompletionSource LanguageListInitialized = new TaskCompletionSource(); // 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.")]