Fixing deprecated bitwise ops of dissimiliar enums
This commit is contained in:
parent
65cb10ffe2
commit
223dcfec6d
1 changed files with 2 additions and 2 deletions
|
@ -28,8 +28,8 @@ class PresenterView : public QQuickView
|
|||
public:
|
||||
PresenterView()
|
||||
{
|
||||
Qt::WindowFlags windowFlags = Qt::WindowFlags(Qt::WA_TranslucentBackground | Qt::WindowDoesNotAcceptFocus | Qt::WindowFullScreen
|
||||
| Qt::WindowStaysOnTopHint | Qt::FramelessWindowHint | Qt::Tool);
|
||||
Qt::WindowFlags windowFlags = Qt::WindowFlags(Qt::WindowDoesNotAcceptFocus | Qt::WindowFullScreen | Qt::WindowStaysOnTopHint | Qt::FramelessWindowHint
|
||||
| Qt::Tool | (int)(Qt::WA_TranslucentBackground));
|
||||
#ifdef Q_OS_WIN
|
||||
windowFlags |= Qt::WindowTransparentForInput;
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue