Use the right variables when detecting max height
This commit is contained in:
parent
b2abe61fc5
commit
b4f3b8ab11
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ export class ListLayout {
|
||||||
|
|
||||||
public setVisibleTilesWithin(newVal: number, maxPossible: number) {
|
public setVisibleTilesWithin(newVal: number, maxPossible: number) {
|
||||||
maxPossible = maxPossible + RESIZER_BOX_FACTOR;
|
maxPossible = maxPossible + RESIZER_BOX_FACTOR;
|
||||||
if (this.visibleTiles > maxPossible) {
|
if (newVal > maxPossible) {
|
||||||
this.visibleTiles = maxPossible;
|
this.visibleTiles = maxPossible;
|
||||||
} else {
|
} else {
|
||||||
this.visibleTiles = newVal;
|
this.visibleTiles = newVal;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue