# HG changeset patch # User Chris Cannam # Date 1442398693 -3600 # Node ID 478e8669df94a6fe75949f612463c268f00b0a15 # Parent 5865c6e296c56d4677d265c573aa80c95c76fe70 Attempt to distinguish audio file path (== location and name of audio file that was loaded) from audio folder (== where new audio is recorded). Not entirely satisfactory diff -r 5865c6e296c5 -r 478e8669df94 src/MainWindow.cpp --- a/src/MainWindow.cpp Tue Sep 15 16:44:13 2015 +0100 +++ b/src/MainWindow.cpp Wed Sep 16 11:18:13 2015 +0100 @@ -417,7 +417,7 @@ menu->addAction(action); toolbar->addAction(action); - action = new QAction(tr("Save Session to Audio &Path"), this); + action = new QAction(tr("Save Session to Audio File &Path"), this); action->setShortcut(tr("Ctrl+Alt+S")); action->setStatusTip(tr("Save the current session into a %1 session file with the same filename as the audio but a .ton extension.").arg(QApplication::applicationName())); connect(action, SIGNAL(triggered()), this, SLOT(saveSessionInAudioPath()));