Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominique Louis <savagesoftware@gmail.com>2017-07-06 22:38:48 +0300
committerDominique Louis <savagesoftware@gmail.com>2017-07-07 19:18:55 +0300
commita0e25ba4c99303143365f3ebcfc1ba194f4b96ab (patch)
treedfd6daf26fccdddcab1a8ce283e7cb08f4ed9236 /Xamarin.PropertyEditing.Mac/PropertyEditorPanel.cs
parent3393680c6b4aceac7d7b7b7d4d36f91d225e3a9e (diff)
Make UnfocusableTextView an UnfocusableTextField to appease the layering gods.
Diffstat (limited to 'Xamarin.PropertyEditing.Mac/PropertyEditorPanel.cs')
-rw-r--r--Xamarin.PropertyEditing.Mac/PropertyEditorPanel.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Xamarin.PropertyEditing.Mac/PropertyEditorPanel.cs b/Xamarin.PropertyEditing.Mac/PropertyEditorPanel.cs
index 348638e..8788ddb 100644
--- a/Xamarin.PropertyEditing.Mac/PropertyEditorPanel.cs
+++ b/Xamarin.PropertyEditing.Mac/PropertyEditorPanel.cs
@@ -140,9 +140,9 @@ namespace Xamarin.PropertyEditing.Mac
};
// TODO: localize
- NSTableColumn propertiesList = new NSTableColumn (PropertyListColId) { Title = "Properties" };
+ NSTableColumn propertiesList = new NSTableColumn (PropertyListColId) { Title = "Property" };
NSTableColumn propertyEditors = new NSTableColumn (PropertyEditorColId) { Title = "Value" };
- propertiesList.Width = 150;
+ propertiesList.Width = 200;
propertyEditors.Width = 250;
propertyTable.AddColumn (propertiesList);
propertyTable.AddColumn (propertyEditors);