mirror of https://github.com/procxx/kepka.git
Fix build for old OS X versions.
This commit is contained in:
parent
69c73d0a2c
commit
2d4c99a6f7
Telegram/SourceFiles
|
@ -137,7 +137,11 @@ MediaView::MediaView()
|
|||
});
|
||||
handleAuthSessionChange();
|
||||
|
||||
#ifdef OS_MAC_OLD
|
||||
setWindowFlags(Qt::FramelessWindowHint);
|
||||
#else // OS_MAC_OLD
|
||||
setWindowFlags(Qt::FramelessWindowHint | Qt::MaximizeUsingFullscreenGeometryHint);
|
||||
#endif // OS_MAC_OLD
|
||||
moveToScreen();
|
||||
setAttribute(Qt::WA_NoSystemBackground, true);
|
||||
setAttribute(Qt::WA_TranslucentBackground, true);
|
||||
|
|
Loading…
Reference in New Issue