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

Commit fa939f1

Browse files
authored
Merge pull request #9177 from mono/pr-fix-bug753588
[753558]Fix VO for output dir folder entry
2 parents 42600e0 + 54ec3cb commit fa939f1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

main/src/addins/PerformanceDiagnostics/PerformanceDiagnostics/GlobalOptionsDialog.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@ public override Control CreatePanelWidget()
2323
var outputDirectoryHBox = new Gtk.HBox();
2424
outputDirectoryHBox.BorderWidth = 10;
2525
outputDirectoryHBox.Spacing = 6;
26-
var outputDirectoryLabel = new Gtk.Label(GettextCatalog.GetString("Output directory:"));
26+
var outputDirectoryLabel = new Gtk.Label (GettextCatalog.GetString ("Output directory:"));
2727
outputDirectoryLabel.Xalign = 0;
2828
outputDirectoryHBox.PackStart(outputDirectoryLabel, false, false, 0);
2929
folderEntry.Path = Options.OutputPath.Value;
30+
folderEntry.SetEntryAccessibleTitleUIElement (outputDirectoryLabel.Accessible);
3031
outputDirectoryHBox.PackStart(folderEntry, true, true, 0);
3132

3233
vbox.PackStart(outputDirectoryHBox, false, false, 0);

0 commit comments

Comments
 (0)