Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <llsan@microsoft.com>2017-06-16 12:18:31 +0300
committerGitHub <noreply@github.com>2017-06-16 12:18:31 +0300
commit38a783f5027cbf1115dbd8e4172ff5e1f87e5134 (patch)
tree262de7179a62ba9272a41759af6e4ce7ce611647 /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Projects
parent6410ab5f435c5eecd7efdd5a41ed23e817d7a84f (diff)
parentd1e6d05f0b93c33636b1067665cd476f2e8a039e (diff)
Merge pull request #2639 from iainx/fix-53448
Add accessibility attributes to the preferences dialog
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Projects')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Projects/NewConfigurationDialog.cs11
1 files changed, 3 insertions, 8 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Projects/NewConfigurationDialog.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Projects/NewConfigurationDialog.cs
index 64888728c7..87fd92bd62 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Projects/NewConfigurationDialog.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Projects/NewConfigurationDialog.cs
@@ -66,19 +66,14 @@ namespace MonoDevelop.Ide.Projects
void SetupAccessibility ()
{
- comboName.SetCommonAccessibilityAttributes ("NewConfiguration.Name",
- GettextCatalog.GetString ("Name"),
+ comboName.SetCommonAccessibilityAttributes ("NewConfiguration.Name", label1,
GettextCatalog.GetString ("Select or enter the name of the new configuration"));
- comboName.Accessible.SetTitleUIElement (label1.Accessible);
- label1.Accessible.SetTitleFor (comboName.Accessible);
comboPlatform.SetCommonAccessibilityAttributes ("NewConfiguration.Platform",
- GettextCatalog.GetString ("Platform"),
+ label2,
GettextCatalog.GetString ("Select or enter the platform for the new configuration"));
- comboPlatform.Accessible.SetTitleUIElement (label2.Accessible);
- label2.Accessible.SetTitleFor (comboPlatform.Accessible);
- createChildrenCheck.SetCommonAccessibilityAttributes ("NewConfiguration.CreateCheck", null,
+ createChildrenCheck.SetCommonAccessibilityAttributes ("NewConfiguration.CreateCheck", "",
GettextCatalog.GetString ("Check to create configurations for all the solution items"));
}