diff --git a/front/src/WebRtc/LayoutManager.ts b/front/src/WebRtc/LayoutManager.ts index c2bb683e..575b0bb2 100644 --- a/front/src/WebRtc/LayoutManager.ts +++ b/front/src/WebRtc/LayoutManager.ts @@ -208,8 +208,8 @@ class LayoutManager { const mainSectionChildren = Array.from(document.querySelectorAll('div.main-section > div').values()); const sidebarChildren = Array.from(document.querySelectorAll('aside.sidebar > div').values()); - // Nothing? Let's center - if (mainSectionChildren.length === 0 && sidebarChildren.length === 0) { + // No presentation? Let's center on the screen + if (mainSectionChildren.length === 0) { return { xStart: 0, yStart: 0, @@ -218,18 +218,6 @@ class LayoutManager { } } - if (mainSectionChildren.length === 0) { - const lastSidebarDiv = sidebarChildren[sidebarChildren.length-1]; - - // No presentation? Let's center on the main-section space - return { - xStart: 0, - yStart: 0, - xEnd: lastSidebarDiv.offsetLeft, - yEnd: window.innerHeight - } - } - // At this point, we know we have at least one element in the main section. const lastPresentationDiv = mainSectionChildren[mainSectionChildren.length-1];