Skip to content
This repository was archived by the owner on Oct 4, 2021. It is now read-only.

Commit 106b837

Browse files
author
Rodrigo Moya
authored
Merge pull request #8929 from mono/fix/752772-privacy-combobox-a11y-label
[752772][PolicyOptions] fixed a11y of combobox
2 parents 42a6089 + 2c3eaad commit 106b837

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/PolicyOptionsPanel.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ Control IOptionsPanel.CreatePanelWidget ()
7272
CellRenderer renderer = new CellRendererText ();
7373
policyCombo.PackStart (renderer, true);
7474
policyCombo.AddAttribute (renderer, "text", 0);
75-
75+
policyCombo.Accessible.SetTitleUIElement (label.Accessible);
76+
7677
label.MnemonicWidget = policyCombo;
7778
policyCombo.RowSeparatorFunc = (TreeModel model, TreeIter iter) =>
7879
((string) model.GetValue (iter, 0)) == "--";

0 commit comments

Comments
 (0)