diff --git a/packages/app/src/pages/live/[key].jsx b/packages/app/src/pages/live/[key].jsx index 6b51c68e..d9301c64 100755 --- a/packages/app/src/pages/live/[key].jsx +++ b/packages/app/src/pages/live/[key].jsx @@ -234,13 +234,13 @@ export default class StreamViewer extends React.Component { // make the interface a bit confortable for a video player app.style.applyVariant("dark") - app.eventBus.emit("style.compactMode", true) + app.cores.style.compactMode(true) } exitPlayerAnimation = () => { - app.style.applyVariant(app.settings.get("themeVariant")) + app.style.applyVariant(app.cores.settings.get("themeVariant")) - app.eventBus.emit("style.compactMode", false) + app.cores.style.compactMode(false) } updateQuality = (newQuality) => {