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:
authoriain <iain.holmes@xamarin.com>2017-07-20 19:26:38 +0300
committerGitHub <noreply@github.com>2017-07-20 19:26:38 +0300
commitfe235f018dfaf1bc5e8da92bf0b48fd4863bc59d (patch)
tree266d17f0130a295db42b37c1ea41ad3f91b794ae /main/src/core/MonoDevelop.Ide
parentecb218278d2a51dcabff486a117e94af85f92521 (diff)
parent01d6d68b7d11c4f7a635ec5ba66d95599b437f7a (diff)
Merge pull request #2106 from iainx/fix-53552
[A11y] Make the New Breakpoint dialog accessible
Diffstat (limited to 'main/src/core/MonoDevelop.Ide')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Components/InformationPopoverWidget.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components/InformationPopoverWidget.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components/InformationPopoverWidget.cs
index 376556e212..707aba213a 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components/InformationPopoverWidget.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components/InformationPopoverWidget.cs
@@ -42,6 +42,7 @@ namespace MonoDevelop.Components
{
severity = TaskSeverity.Information;
imageView = new Xwt.ImageView ();
+ imageView.Accessible.Role = Xwt.Accessibility.Role.Filler;
UpdateIcon ();
Content = imageView;
CanGetFocus = true;
@@ -66,6 +67,8 @@ namespace MonoDevelop.Components
set {
message = value;
UpdatePopover ();
+
+ this.Accessible.Label = value;
}
}