Skip to content

Commit

Permalink
fixed a GGroup bug, no effect of single grid resizable.
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoguzhu committed Nov 12, 2020
1 parent 207d556 commit a701a0a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion demo/libs/fairygui/fairygui.js
Expand Up @@ -4630,7 +4630,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
if (buffer.version >= 2) {
this._excludeInvisibles = buffer.readBool();
this._autoSizeDisabled = buffer.readBool();
this._mainChildIndex = buffer.readInt();
this._mainGridIndex = buffer.readInt();
}
};
GGroup.prototype.setup_afterAdd = function (buffer, beginPos) {
Expand Down
2 changes: 1 addition & 1 deletion demo/libs/fairygui/fairygui.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion source/bin/fairygui.js
Expand Up @@ -4630,7 +4630,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
if (buffer.version >= 2) {
this._excludeInvisibles = buffer.readBool();
this._autoSizeDisabled = buffer.readBool();
this._mainChildIndex = buffer.readInt();
this._mainGridIndex = buffer.readInt();
}
};
GGroup.prototype.setup_afterAdd = function (buffer, beginPos) {
Expand Down
2 changes: 1 addition & 1 deletion source/bin/fairygui.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion source/src/GGroup.ts
Expand Up @@ -434,7 +434,7 @@ namespace fgui {
if (buffer.version >= 2) {
this._excludeInvisibles = buffer.readBool();
this._autoSizeDisabled = buffer.readBool();
this._mainChildIndex = buffer.readInt();
this._mainGridIndex = buffer.readInt();
}
}

Expand Down

0 comments on commit a701a0a

Please sign in to comment.