Fix: Horizontal scroll creating new row on iOS

music 3.0.1
Juraj Nyíri 3 years ago
parent 9c4e73276d
commit 2249314fa9

@ -21961,6 +21961,7 @@ class PlexMeetsHomeAssistant extends HTMLElement {
} }
return false; return false;
}); });
this.contentContainer.style.width = `${parseFloat(this.contentContainer.style.width) + 5}px`;
} }
const contentbg = this.getElementsByClassName('contentbg')[0]; const contentbg = this.getElementsByClassName('contentbg')[0];
this.contentBGHeight = getHeight(contentbg); this.contentBGHeight = getHeight(contentbg);

@ -627,6 +627,7 @@ class PlexMeetsHomeAssistant extends HTMLElement {
} }
return false; return false;
}); });
this.contentContainer.style.width = `${parseFloat(this.contentContainer.style.width) + 5}px`;
} }
const contentbg = this.getElementsByClassName('contentbg')[0] as HTMLElement; const contentbg = this.getElementsByClassName('contentbg')[0] as HTMLElement;

Loading…
Cancel
Save