mirror of https://github.com/procxx/kepka.git
Fix dock and menu hiding on macOS.
Regression was introduced in 0681d10c51
.
This commit is contained in:
parent
2d4c99a6f7
commit
74fc5524ab
|
@ -137,11 +137,11 @@ MediaView::MediaView()
|
||||||
});
|
});
|
||||||
handleAuthSessionChange();
|
handleAuthSessionChange();
|
||||||
|
|
||||||
#ifdef OS_MAC_OLD
|
#ifdef Q_OS_LINUX
|
||||||
setWindowFlags(Qt::FramelessWindowHint);
|
|
||||||
#else // OS_MAC_OLD
|
|
||||||
setWindowFlags(Qt::FramelessWindowHint | Qt::MaximizeUsingFullscreenGeometryHint);
|
setWindowFlags(Qt::FramelessWindowHint | Qt::MaximizeUsingFullscreenGeometryHint);
|
||||||
#endif // OS_MAC_OLD
|
#else // Q_OS_LINUX
|
||||||
|
setWindowFlags(Qt::FramelessWindowHint);
|
||||||
|
#endif // Q_OS_LINUX
|
||||||
moveToScreen();
|
moveToScreen();
|
||||||
setAttribute(Qt::WA_NoSystemBackground, true);
|
setAttribute(Qt::WA_NoSystemBackground, true);
|
||||||
setAttribute(Qt::WA_TranslucentBackground, true);
|
setAttribute(Qt::WA_TranslucentBackground, true);
|
||||||
|
@ -1781,7 +1781,11 @@ void MediaView::displayFinished() {
|
||||||
updateControls();
|
updateControls();
|
||||||
if (isHidden()) {
|
if (isHidden()) {
|
||||||
psUpdateOverlayed(this);
|
psUpdateOverlayed(this);
|
||||||
|
#ifdef Q_OS_LINUX
|
||||||
showFullScreen();
|
showFullScreen();
|
||||||
|
#else // Q_OS_LINUX
|
||||||
|
show();
|
||||||
|
#endif // Q_OS_LINUX
|
||||||
psShowOverAll(this);
|
psShowOverAll(this);
|
||||||
activateWindow();
|
activateWindow();
|
||||||
QApplication::setActiveWindow(this);
|
QApplication::setActiveWindow(this);
|
||||||
|
|
Loading…
Reference in New Issue