Merge pull request #1821 from cg2121/multiview-cursor

UI: Don't hide cursor over multiview
This commit is contained in:
Jim
2019-04-13 03:46:27 -07:00
committed by GitHub

View File

@@ -74,7 +74,7 @@ OBSProjector::OBSProjector(QWidget *widget, obs_source_t *source_, int monitor,
bool hideCursor = config_get_bool(GetGlobalConfig(),
"BasicWindow", "HideProjectorCursor");
if (hideCursor && !isWindow) {
if (hideCursor && !isWindow && type != ProjectorType::Multiview) {
QPixmap empty(16, 16);
empty.fill(Qt::transparent);
setCursor(QCursor(empty));