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:
-rw-r--r--Xamarin.PropertyEditing.Mac/Controls/PropertyEditorControl.cs2
-rw-r--r--Xamarin.PropertyEditing.Mac/PropertyTableDelegate.cs4
2 files changed, 3 insertions, 3 deletions
diff --git a/Xamarin.PropertyEditing.Mac/Controls/PropertyEditorControl.cs b/Xamarin.PropertyEditing.Mac/Controls/PropertyEditorControl.cs
index b46697f..2fd5c68 100644
--- a/Xamarin.PropertyEditing.Mac/Controls/PropertyEditorControl.cs
+++ b/Xamarin.PropertyEditing.Mac/Controls/PropertyEditorControl.cs
@@ -22,7 +22,7 @@ namespace Xamarin.PropertyEditing.Mac
public NSTableView TableView { get; set; }
- public const int DefaultControlHeight = 22;
+ public const int DefaultControlHeight = 24;
public const int DefaultFontSize = 11;
public const int DefaultPropertyLabelFontSize = 11;
public const int DefaultDescriptionLabelFontSize = 9;
diff --git a/Xamarin.PropertyEditing.Mac/PropertyTableDelegate.cs b/Xamarin.PropertyEditing.Mac/PropertyTableDelegate.cs
index c1119c8..7b5c90e 100644
--- a/Xamarin.PropertyEditing.Mac/PropertyTableDelegate.cs
+++ b/Xamarin.PropertyEditing.Mac/PropertyTableDelegate.cs
@@ -191,13 +191,13 @@ namespace Xamarin.PropertyEditing.Mac
GetVMGroupCellItendifiterFromFacade (item, out vm, out group, out cellIdentifier);
if (group != null)
- return 20;
+ return 24;
if (!this.registrations.TryGetValue (cellIdentifier, out EditorRegistration registration)) {
registration = new EditorRegistration ();
if (cellIdentifier == nameof(PanelHeaderEditorControl)) {
- registration.RowSize = 44;
+ registration.RowSize = 54;
} else {
NSView editorOrContainer = GetEditor (cellIdentifier, vm, outlineView);
IEditorView view = ((editorOrContainer as EditorContainer)?.EditorView) ?? editorOrContainer as IEditorView;