Prevent taskbar from showing for presenter when in full-screen mode

The taskbar entry still shows up, but isn't displayed over other
full-screen applications
This commit is contained in:
Matthijs Tijink 2019-07-25 18:18:01 +00:00
parent 76424c157b
commit d96bafe9d4

View file

@ -43,7 +43,7 @@ class PresenterView : public QQuickView
{
public:
PresenterView() {
setFlags(flags() | Qt::WindowFlags(Qt::WA_TranslucentBackground));
setFlags(Qt::WindowFlags(Qt::WA_TranslucentBackground) | Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint | Qt::WindowDoesNotAcceptFocus | Qt::WindowFlags(Qt::WindowFullScreen) | Qt::Tool);
setClearBeforeRendering(true);
setColor(QColor(Qt::transparent));