UI: Fix fullscreen projector on Linux

This fixes a issue on Linux, at least on Ubuntu anyway, where the title bar and unity launcher is shown when the fullscreen projector is active.
This commit is contained in:
cg2121 2016-07-12 20:45:51 -05:00 committed by GitHub
parent 364cb9fb03
commit 21a3c3505e

View File

@ -9,7 +9,8 @@
OBSProjector::OBSProjector(QWidget *widget, obs_source_t *source_)
: OBSQTDisplay (widget,
Qt::Window | Qt::FramelessWindowHint),
Qt::Window | Qt::FramelessWindowHint |
Qt::X11BypassWindowManagerHint),
source (source_),
removedSignal (obs_source_get_signal_handler(source),
"remove", OBSSourceRemoved, this)