Unverified Commit 9307a83f authored by Mouad Debbar's avatar Mouad Debbar Committed by GitHub

Changing RenderEditable.textAlign doesn't break hot reload anymore (#44605)

parent 23d1ae0f
...@@ -637,7 +637,7 @@ class RenderEditable extends RenderBox with RelayoutWhenSystemFontsChangeMixin { ...@@ -637,7 +637,7 @@ class RenderEditable extends RenderBox with RelayoutWhenSystemFontsChangeMixin {
if (_textPainter.textAlign == value) if (_textPainter.textAlign == value)
return; return;
_textPainter.textAlign = value; _textPainter.textAlign = value;
markNeedsPaint(); markNeedsTextLayout();
} }
/// The directionality of the text. /// The directionality of the text.
......
...@@ -179,6 +179,30 @@ void main() { ...@@ -179,6 +179,30 @@ void main() {
expect(editable, paintsExactlyCountTimes(#drawRRect, 0)); expect(editable, paintsExactlyCountTimes(#drawRRect, 0));
}, skip: isBrowser); }, skip: isBrowser);
test('Can change textAlign', () {
final TextSelectionDelegate delegate = FakeEditableTextState();
final RenderEditable editable = RenderEditable(
textAlign: TextAlign.start,
textDirection: TextDirection.ltr,
offset: ViewportOffset.zero(),
textSelectionDelegate: delegate,
text: const TextSpan(text: 'test'),
startHandleLayerLink: LayerLink(),
endHandleLayerLink: LayerLink(),
);
layout(editable);
editable.layout(BoxConstraints.loose(const Size(100, 100)));
expect(editable.textAlign, TextAlign.start);
expect(editable.debugNeedsLayout, isFalse);
editable.textAlign = TextAlign.center;
expect(editable.textAlign, TextAlign.center);
expect(editable.debugNeedsLayout, isTrue);
});
test('Cursor with ideographic script', () { test('Cursor with ideographic script', () {
final TextSelectionDelegate delegate = FakeEditableTextState(); final TextSelectionDelegate delegate = FakeEditableTextState();
final ValueNotifier<bool> showCursor = ValueNotifier<bool>(true); final ValueNotifier<bool> showCursor = ValueNotifier<bool>(true);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment