Merge branch 'maxHorizontalRows'

main 3.6.1
Juraj Nyíri 2 years ago
commit f79c14b326

@ -22429,7 +22429,7 @@ class PlexMeetsHomeAssistant extends HTMLElement {
movieElem.style.clear = 'both';
}
const marginRight = 10;
if (this.renderedRows < 2 || !this.maxRows || this.maxRows < 2) {
if (this.renderedRows === 1 || !this.maxRows || this.maxRows < 2) {
containerWidth += parseFloat(movieElem.style.width) + marginRight;
}
}

@ -667,7 +667,7 @@ class PlexMeetsHomeAssistant extends HTMLElement {
movieElem.style.clear = 'both';
}
const marginRight = 10;
if (this.renderedRows < 2 || !this.maxRows || this.maxRows < 2) {
if (this.renderedRows === 1 || !this.maxRows || this.maxRows < 2) {
containerWidth += parseFloat(movieElem.style.width) + marginRight;
}
}

Loading…
Cancel
Save