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

Commit 54ec3cb

Browse files
committed
Fix VO for output dir folder entry
1 parent 8c555df commit 54ec3cb

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)