mirror of
https://github.com/ONLYOFFICE/desktop-apps.git
synced 2026-04-07 14:09:22 +08:00
Fix bug 74787
This commit is contained in:
@ -1156,6 +1156,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