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-03-24 16:24:57 +0300
committeriain holmes <iain@xamarin.com>2017-03-24 16:24:57 +0300
commit690886f30b1967a5b3c35431a2dc942ec1102e9b (patch)
tree9f0c69b3b88249bb1fe1289e83ecf32f63b8679c /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui
parent28f4d81aa372c2c3724492fbf2135a201964529b (diff)
[A11y] Make AccessibilityElementProxy into a wrapper object
Makes AccessibilityElementProxy a wrapper object so that we don't need a XamMac reference on MonoDevelop.SourceEditor
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/SdiWorkspaceWindow.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/SdiWorkspaceWindow.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/SdiWorkspaceWindow.cs
index 57613bcfb6..3dd6ed980c 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/SdiWorkspaceWindow.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/SdiWorkspaceWindow.cs
@@ -622,7 +622,7 @@ namespace MonoDevelop.Ide.Gui
var tab = new Tab (subViewToolbar, label) {
Tag = viewContent
};
- tab.Accessible.SetHelp (viewContent.TabAccessibilityDescription);
+ tab.Accessible.Help = viewContent.TabAccessibilityDescription;
// If this is the current displayed document we need to add the control immediately as the tab is already active.
if (addedContent) {