summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorihiro Kamae <norihiro@nagater.net>2023-06-18 02:18:06 +0900
committerLain <lain@obsproject.com>2023-06-18 15:05:22 -0700
commitc58e511813c33e93da7637d50aa431ae0cddda0c (patch)
treec3355f68a263941496f35020f5e8017f7469c376
parent0b7ac961574387a0e98ee6cf38c748bcfc56ee1f (diff)
UI: Translate place holder name for new group29.1.3release/29.1
(cherry picked from commit 323f3957cdebcdf0b1326bd3bae0339adacb45c3)
-rw-r--r--UI/window-basic-source-select.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/UI/window-basic-source-select.cpp b/UI/window-basic-source-select.cpp
index 38308b5be..85edea1e8 100644
--- a/UI/window-basic-source-select.cpp
+++ b/UI/window-basic-source-select.cpp
@@ -367,6 +367,8 @@ static inline const char *GetSourceDisplayName(const char *id)
{
if (strcmp(id, "scene") == 0)
return Str("Basic.Scene");
+ else if (strcmp(id, "group") == 0)
+ return Str("Group");
const char *v_id = obs_get_latest_input_type_id(id);
return obs_source_get_display_name(v_id);
}