Skip to content

Commit

Permalink
Default Editor.VerticalTextAlignment to Start (#5648)
Browse files Browse the repository at this point in the history
Fixes #4089
  • Loading branch information
bricelam committed Mar 31, 2022
1 parent f9b3ccd commit db87710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Controls/src/Core/Editor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public partial class Editor : InputView, IEditorController, IFontElement, ITextA
public static readonly BindableProperty HorizontalTextAlignmentProperty = TextAlignmentElement.HorizontalTextAlignmentProperty;

/// <include file="../../docs/Microsoft.Maui.Controls/Editor.xml" path="//Member[@MemberName='VerticalTextAlignmentProperty']/Docs" />
public static readonly BindableProperty VerticalTextAlignmentProperty = TextAlignmentElement.VerticalTextAlignmentProperty;
public static readonly BindableProperty VerticalTextAlignmentProperty = BindableProperty.Create(nameof(VerticalTextAlignment), typeof(TextAlignment), typeof(Editor), TextAlignment.Start);

readonly Lazy<PlatformConfigurationRegistry<Editor>> _platformConfigurationRegistry;

Expand Down

0 comments on commit db87710

Please sign in to comment.