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:
parent
76424c157b
commit
d96bafe9d4
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
||||
|
|
Loading…
Reference in a new issue