*neutrino record: change default button to ok in displayed stopp message

User request:
If user wants to stop record it's better we set focus to ok button.

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@1975 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
thilo
2011-12-16 08:07:07 +00:00
parent da0889afd4
commit 25cf8b1630

View File

@@ -1385,7 +1385,7 @@ bool CRecordManager::AskToStop(const t_channel_id channel_id)
return false;
if(ShowMsgUTF(LOCALE_SHUTDOWN_RECODING_QUERY, title.c_str(),
CMessageBox::mbrNo, CMessageBox::mbYes | CMessageBox::mbNo, NULL, 450, 30, false) == CMessageBox::mbrYes) {
CMessageBox::mbrYes, CMessageBox::mbYes | CMessageBox::mbNo, NULL, 450, 30, false) == CMessageBox::mbrYes) {
g_Timerd->stopTimerEvent(recording_id);
return true;
}