diff --git a/UI/window-basic-main.cpp b/UI/window-basic-main.cpp index 25f2e3353..3c74e4172 100644 --- a/UI/window-basic-main.cpp +++ b/UI/window-basic-main.cpp @@ -4570,6 +4570,7 @@ void OBSBasic::CreateSourcePopupMenu(int idx, bool preview) popup.addSeparator(); OBSSceneItem sceneItem = ui->sources->Get(idx); + bool lock = obs_sceneitem_locked(sceneItem); obs_source_t *source = obs_sceneitem_get_source(sceneItem); uint32_t flags = obs_source_get_output_flags(source); bool isAsyncVideo = (flags & OBS_SOURCE_ASYNC_VIDEO) == @@ -4590,6 +4591,18 @@ void OBSBasic::CreateSourcePopupMenu(int idx, bool preview) popup.addMenu(ui->orderMenu); popup.addMenu(ui->transformMenu); + ui->actionResetTransform->setEnabled(!lock); + ui->actionRotate90CW->setEnabled(!lock); + ui->actionRotate90CCW->setEnabled(!lock); + ui->actionRotate180->setEnabled(!lock); + ui->actionFlipHorizontal->setEnabled(!lock); + ui->actionFlipVertical->setEnabled(!lock); + ui->actionFitToScreen->setEnabled(!lock); + ui->actionStretchToScreen->setEnabled(!lock); + ui->actionCenterToScreen->setEnabled(!lock); + ui->actionVerticalCenter->setEnabled(!lock); + ui->actionHorizontalCenter->setEnabled(!lock); + sourceProjector = new QMenu(QTStr("SourceProjector")); AddProjectorMenuMonitors(sourceProjector, this, SLOT(OpenSourceProjector())); @@ -6188,6 +6201,8 @@ static bool reset_tr(obs_scene_t *scene, obs_sceneitem_t *item, void *param) obs_sceneitem_group_enum_items(item, reset_tr, nullptr); if (!obs_sceneitem_selected(item)) return true; + if (obs_sceneitem_locked(item)) + return true; obs_sceneitem_defer_update_begin(item); @@ -6265,6 +6280,8 @@ static bool RotateSelectedSources(obs_scene_t *scene, obs_sceneitem_t *item, param); if (!obs_sceneitem_selected(item)) return true; + if (obs_sceneitem_locked(item)) + return true; float rot = *reinterpret_cast(param); @@ -6313,6 +6330,8 @@ static bool MultiplySelectedItemScale(obs_scene_t *scene, obs_sceneitem_t *item, param); if (!obs_sceneitem_selected(item)) return true; + if (obs_sceneitem_locked(item)) + return true; vec3 tl = GetItemTL(item); @@ -6356,6 +6375,8 @@ static bool CenterAlignSelectedItems(obs_scene_t *scene, obs_sceneitem_t *item, param); if (!obs_sceneitem_selected(item)) return true; + if (obs_sceneitem_locked(item)) + return true; obs_video_info ovi; obs_get_video_info(&ovi); @@ -6410,6 +6431,8 @@ static bool center_to_scene(obs_scene_t *, obs_sceneitem_t *item, void *param) ¢erType); if (!obs_sceneitem_selected(item)) return true; + if (obs_sceneitem_locked(item)) + return true; obs_get_video_info(&ovi); obs_sceneitem_get_info(item, &oti);