mirror of
https://github.com/ONLYOFFICE/desktop-apps.git
synced 2026-04-07 14:09:22 +08:00
Merge pull request 'Fix bug 74787' (#287) from fix/bug-74787 into release/v9.0.0
Reviewed-on: https://git.onlyoffice.com/ONLYOFFICE/desktop-apps/pulls/287
This commit is contained in:
@ -1203,6 +1203,15 @@ void CAscTabWidget::setFullScreen(bool apply, int id)
|
||||
fsWidget = qobject_cast<CTabPanel *>(m_dataFullScreen->widget());
|
||||
widget(index)->layout()->addWidget(fsWidget);
|
||||
|
||||
// TODO: remove after switching to libVLC libraries on Linux
|
||||
#ifdef _LINUX
|
||||
QCefView* cef_media_view = this->findChild<QCefView*>();
|
||||
if (cef_media_view)
|
||||
{
|
||||
cef_media_view->OnMediaEnd();
|
||||
}
|
||||
#endif
|
||||
|
||||
RELEASEOBJECT(m_dataFullScreen->parent)
|
||||
RELEASEOBJECT(m_dataFullScreen)
|
||||
// updateGeometry();
|
||||
|
||||
Reference in New Issue
Block a user