From 19c7e44bf7d5fe8990db57a3dd4cd678cf44e963 Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Sun, 29 Jul 2018 00:54:55 +0200 Subject: [PATCH] - record: add space between title and duration in record messages Signed-off-by: Thilo Graf --- src/driver/record.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/driver/record.cpp b/src/driver/record.cpp index 8492dc6bc..04960ab89 100644 --- a/src/driver/record.cpp +++ b/src/driver/record.cpp @@ -1442,7 +1442,7 @@ int CRecordManager::exec(CMenuTarget* parent, const std::string & actionKey ) if (inst) { std::string title, duration; inst->GetRecordString(title, duration); - title += duration; + title += " " + duration; tostart = (ShowMsg(LOCALE_RECORDING_IS_RUNNING, title.c_str(), CMsgBox::mbrYes, CMsgBox::mbYes | CMsgBox::mbNo, NULL, 450, DEFAULT_TIMEOUT) == CMsgBox::mbrYes); } @@ -1584,7 +1584,7 @@ bool CRecordManager::AskToStop(const t_channel_id channel_id, const int recid) if(inst) { inst->GetRecordString(title, duration); - title += duration; + title += " " + duration; } mutex.unlock(); if(inst == NULL)