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:
|
public:
|
||||||
PresenterView()
|
PresenterView()
|
||||||
{
|
{
|
||||||
Qt::WindowFlags windowFlags = Qt::WindowFlags(Qt::WA_TranslucentBackground | Qt::WindowDoesNotAcceptFocus | Qt::WindowFullScreen
|
Qt::WindowFlags windowFlags = Qt::WindowFlags(Qt::WindowDoesNotAcceptFocus | Qt::WindowFullScreen | Qt::WindowStaysOnTopHint | Qt::FramelessWindowHint
|
||||||
| Qt::WindowStaysOnTopHint | Qt::FramelessWindowHint | Qt::Tool);
|
| Qt::Tool | (int)(Qt::WA_TranslucentBackground));
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
windowFlags |= Qt::WindowTransparentForInput;
|
windowFlags |= Qt::WindowTransparentForInput;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue