From 269a91f52283ea6e39949076169d09903dd9cb0d Mon Sep 17 00:00:00 2001 From: jp9000 Date: Sun, 29 Jun 2014 18:43:54 -0700 Subject: [PATCH] Give the 'add source' popup the 'Add' title This allows the popup to be appended directly as an item for other popups. --- obs/window-basic-main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obs/window-basic-main.cpp b/obs/window-basic-main.cpp index 22532654d..18354fe8d 100644 --- a/obs/window-basic-main.cpp +++ b/obs/window-basic-main.cpp @@ -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);