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 holmes <iain@xamarin.com>2017-04-03 20:45:57 +0300
committeriain holmes <iain@xamarin.com>2017-06-12 15:40:37 +0300
commit01d6d68b7d11c4f7a635ec5ba66d95599b437f7a (patch)
tree12e900ff61a4f4c8d9b735382d6fa2a7de8a0f4b /main/src/core/MonoDevelop.Ide/MonoDevelop.Components/InformationPopoverWidget.cs
parentb81ba0afb6f056af72f2e6356b3ed1ff45aff3c8 (diff)
[A11y] Make the New Breakpoint dialog accessible
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Components/InformationPopoverWidget.cs')
-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;
}
}