UI: Don't draw audio/transition sources in properties

This commit is contained in:
jp9000
2016-03-02 12:31:16 -08:00
parent f33f8d8e6f
commit 694a6da7b8
2 changed files with 16 additions and 2 deletions

View File

@@ -103,7 +103,14 @@ OBSBasicProperties::OBSBasicProperties(QWidget *parent, OBSSource source_)
OBSBasicProperties::DrawPreview, this);
};
connect(preview.data(), &OBSQTDisplay::DisplayCreated, addDrawCallback);
enum obs_source_type type = obs_source_get_type(source);
uint32_t caps = obs_source_get_output_flags(source);
bool drawable_type = type == OBS_SOURCE_TYPE_INPUT ||
type == OBS_SOURCE_TYPE_SCENE;
if (drawable_type && (caps & OBS_SOURCE_VIDEO) != 0)
connect(preview.data(), &OBSQTDisplay::DisplayCreated,
addDrawCallback);
}
OBSBasicProperties::~OBSBasicProperties()