Mercurial > hg > sonic-visualiser
comparison main/MainWindow.cpp @ 1418:2dd0bc9f8fd4 3.0-integration
Open record container folder instead of record folder (so you can see all existing recordings, no matter when they were made)
author | Chris Cannam |
---|---|
date | Mon, 12 Dec 2016 17:07:53 +0000 |
parents | a89ca5ccb958 |
children | 3e2dee09c10c |
comparison
equal
deleted
inserted
replaced
1417:8bff263578ae | 1418:2dd0bc9f8fd4 |
---|---|
2946 void | 2946 void |
2947 MainWindow::browseRecordedAudio() | 2947 MainWindow::browseRecordedAudio() |
2948 { | 2948 { |
2949 if (!m_recordTarget) return; | 2949 if (!m_recordTarget) return; |
2950 | 2950 |
2951 QString path = m_recordTarget->getRecordFolder(); | 2951 QString path = m_recordTarget->getRecordContainerFolder(); |
2952 if (path == "") path = m_recordTarget->getRecordFolder(); | |
2952 if (path == "") return; | 2953 if (path == "") return; |
2953 | 2954 |
2954 openLocalFolder(path); | 2955 openLocalFolder(path); |
2955 } | 2956 } |
2956 | 2957 |