From b4f2b611eb6913e7ce5f4d5981e8950689862b8b Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 22 Jun 2020 23:36:39 -0400 Subject: [PATCH] Update recording notification message --- src/AppConfig.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AppConfig.cpp b/src/AppConfig.cpp index 2567645..1a84b7d 100644 --- a/src/AppConfig.cpp +++ b/src/AppConfig.cpp @@ -519,7 +519,7 @@ bool AppConfig::verifyRecordingPath() { string recPathStr = wxGetApp().getConfig()->getRecordingPath(); if (recPathStr.empty()) { - wxMessageBox( wxT("Recording path is not set. Please use 'Set Recording Path' from the 'File' Menu."), wxT("Recording Path Error"), wxICON_INFORMATION); + wxMessageBox( wxT("Recording path is not set. Please use 'Set Recording Path' from the 'Recording' Menu."), wxT("Recording Path Error"), wxICON_INFORMATION); return false; } @@ -527,7 +527,7 @@ bool AppConfig::verifyRecordingPath() { wxFileName recPath(recPathStr); if (!recPath.Exists() || !recPath.IsDirWritable()) { - wxMessageBox( wxT("Recording path does not exist or is not writable. Please use 'Set Recording Path' from the 'File' Menu."), wxT("Recording Path Error"), wxICON_INFORMATION); + wxMessageBox( wxT("Recording path does not exist or is not writable. Please use 'Set Recording Path' from the 'Recording' Menu."), wxT("Recording Path Error"), wxICON_INFORMATION); return false; }