Fixed vertical button group bug.
This commit is contained in:
parent
caffee4b15
commit
56910a8c58
4
dist/iwmlib.pixi.js
vendored
4
dist/iwmlib.pixi.js
vendored
@ -3443,8 +3443,8 @@
|
|||||||
if (this.__initHeight > this.opts.maxHeight) {
|
if (this.__initHeight > this.opts.maxHeight) {
|
||||||
// stack!
|
// stack!
|
||||||
const distanceToTop = this.container.y;
|
const distanceToTop = this.container.y;
|
||||||
const distanceToBottom = this.opts.maxHeight - this.container.y - this.container.height;
|
const distanceToBottom = this.opts.maxHeight - this.container.y - this.__initHeight;
|
||||||
|
|
||||||
if (distanceToTop > 0) {
|
if (distanceToTop > 0) {
|
||||||
throwProps.y.end = 0;
|
throwProps.y.end = 0;
|
||||||
} else if (distanceToBottom > 0) {
|
} else if (distanceToBottom > 0) {
|
||||||
|
@ -505,8 +505,8 @@ export default class ButtonGroup extends PIXI.Container {
|
|||||||
if (this.__initHeight > this.opts.maxHeight) {
|
if (this.__initHeight > this.opts.maxHeight) {
|
||||||
// stack!
|
// stack!
|
||||||
const distanceToTop = this.container.y
|
const distanceToTop = this.container.y
|
||||||
const distanceToBottom = this.opts.maxHeight - this.container.y - this.container.height
|
const distanceToBottom = this.opts.maxHeight - this.container.y - this.__initHeight
|
||||||
|
|
||||||
if (distanceToTop > 0) {
|
if (distanceToTop > 0) {
|
||||||
throwProps.y.end = 0
|
throwProps.y.end = 0
|
||||||
} else if (distanceToBottom > 0) {
|
} else if (distanceToBottom > 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user