mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
fix: layoutChanged event in landscape (#6520)
This commit is contained in:
@@ -190,6 +190,9 @@ export class View extends ViewCommon {
|
|||||||
} else if (!this._isLaidOut) {
|
} else if (!this._isLaidOut) {
|
||||||
// Rects could be equal on the first layout and an event should be raised.
|
// Rects could be equal on the first layout and an event should be raised.
|
||||||
this._raiseLayoutChangedEvent();
|
this._raiseLayoutChangedEvent();
|
||||||
|
// But make sure event is raised only once if rects are equal on the first layout as
|
||||||
|
// this method is called twice with equal rects in landscape mode (vs only once in portrait)
|
||||||
|
this._isLaidOut = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user