Fixed vertical button group bug.

This commit is contained in:
2019-08-07 15:03:58 +02:00
parent caffee4b15
commit 56910a8c58
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -3443,7 +3443,7 @@
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;
+1 -1
View File
@@ -505,7 +505,7 @@ 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