mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-09-21 12:49:40 +08:00
Give the 'add source' popup the 'Add' title
This allows the popup to be appended directly as an item for other popups.
This commit is contained in:
@@ -1290,7 +1290,7 @@ QMenu *OBSBasic::CreateAddSourcePopupMenu()
|
||||
bool foundValues = false;
|
||||
size_t idx = 0;
|
||||
|
||||
QMenu *popup = new QMenu;
|
||||
QMenu *popup = new QMenu(QTStr("Add"));
|
||||
while (obs_enum_input_types(idx++, &type)) {
|
||||
const char *name = obs_source_getdisplayname(
|
||||
OBS_SOURCE_TYPE_INPUT, type);
|
||||
|
||||
Reference in New Issue
Block a user