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
path: root/main
diff options
context:
space:
mode:
authorVsevolod Kukol <sevoku@microsoft.com>2019-10-29 13:13:55 +0300
committerVsevolod Kukol <sevoku@microsoft.com>2019-10-29 13:13:55 +0300
commit034cf823b7a4a9bc9c6fad94f03b083becc1f3ca (patch)
treeb4ce1a5892a904e6579910a768775ad0b2c2e17b /main
parentdd7b95a04eabf8e6f2e21be862cbd0d0b6770e09 (diff)
[Project] Set a default a11y label for env variables table
Diffstat (limited to 'main')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Components/EnvironmentVariableCollectionEditor.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components/EnvironmentVariableCollectionEditor.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components/EnvironmentVariableCollectionEditor.cs
index f3f584a9e0..8eb8323e1e 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components/EnvironmentVariableCollectionEditor.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components/EnvironmentVariableCollectionEditor.cs
@@ -45,6 +45,7 @@ namespace MonoDevelop.Components
{
store = new ListStore (keyField, valueField);
list = new ListView (store);
+ list.Accessible.Label = GettextCatalog.GetString ("Environment Variables");
PackStart (list, true);
TextCellView crt = new TextCellView ();