mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 23:42:58 +02:00
- record: add space between title and duration in record messages
Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
@@ -1442,7 +1442,7 @@ int CRecordManager::exec(CMenuTarget* parent, const std::string & actionKey )
|
|||||||
if (inst) {
|
if (inst) {
|
||||||
std::string title, duration;
|
std::string title, duration;
|
||||||
inst->GetRecordString(title, duration);
|
inst->GetRecordString(title, duration);
|
||||||
title += duration;
|
title += " " + duration;
|
||||||
tostart = (ShowMsg(LOCALE_RECORDING_IS_RUNNING, title.c_str(),
|
tostart = (ShowMsg(LOCALE_RECORDING_IS_RUNNING, title.c_str(),
|
||||||
CMsgBox::mbrYes, CMsgBox::mbYes | CMsgBox::mbNo, NULL, 450, DEFAULT_TIMEOUT) == CMsgBox::mbrYes);
|
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) {
|
if(inst) {
|
||||||
inst->GetRecordString(title, duration);
|
inst->GetRecordString(title, duration);
|
||||||
title += duration;
|
title += " " + duration;
|
||||||
}
|
}
|
||||||
mutex.unlock();
|
mutex.unlock();
|
||||||
if(inst == NULL)
|
if(inst == NULL)
|
||||||
|
Reference in New Issue
Block a user