Skip to content

Commit b478312

Browse files
authored
Fix infinite recursion when using GridLayout (#356)
1 parent 8ea6be4 commit b478312

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/GridView/RNGridView.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export class RNGridView extends QWidget implements RNComponent {
8080
childRows: Array<DataWithOffset<RNGridRow>> = [];
8181

8282
get layout() {
83-
return this.layout;
83+
return this._layout;
8484
}
8585

8686
set layout(l: QGridLayout) {

0 commit comments

Comments
 (0)