If "transition on double click" was enabled, OBS assumed all double clicks were going to multiview projectors, which isn't necessarily the case.
@@ -229,6 +229,10 @@ void OBSProjector::mouseDoubleClickEvent(QMouseEvent *event)
if (!transitionOnDoubleClick)
return;
+ // Only MultiView projectors handle double click
+ if (this->type != ProjectorType::Multiview)
+ return;
+
OBSBasic *main = (OBSBasic *)obs_frontend_get_main_window();
if (!main->IsPreviewProgramMode())