mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Make sure to include EDF files in the S9 DATALOG folder itself
This commit is contained in:
parent
204425473f
commit
b14b1abd4d
@ -1380,9 +1380,16 @@ int ResmedLoader::scanFiles(Machine * mach, const QString & datalog_path)
|
||||
#ifdef DEBUG_EFFICIENCY
|
||||
time.start();
|
||||
#endif
|
||||
QFileInfoList EDFfiles;
|
||||
|
||||
QDir dir(datalog_path);
|
||||
|
||||
// First list any EDF files in DATALOG folder
|
||||
QStringList filter;
|
||||
filter << "*.edf";
|
||||
dir.setNameFilters(filter);
|
||||
QFileInfoList EDFfiles = dir.entryInfoList();
|
||||
|
||||
dir.setNameFilters(QStringList());
|
||||
dir.setFilter(QDir::Dirs | QDir::Hidden | QDir::NoDotAndDotDot);
|
||||
QString filename;
|
||||
bool ok;
|
||||
@ -2240,13 +2247,13 @@ void ResDayTask::run()
|
||||
|
||||
sess->UpdateSummaries();
|
||||
|
||||
// Save is not threadsafe?
|
||||
// Save is not threadsafe? (meh... it seems to be)
|
||||
// loader->saveMutex.lock();
|
||||
sess->Store(mach->getDataPath());
|
||||
// loader->saveMutex.unlock();
|
||||
|
||||
loader->sessionMutex.lock();
|
||||
mach->AddSession(sess);
|
||||
mach->AddSession(sess); // AddSession definitely ain't.
|
||||
loader->sessionMutex.unlock();
|
||||
|
||||
// Free the memory used by this session
|
||||
|
@ -57,7 +57,7 @@
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="currentIndex">
|
||||
<number>1</number>
|
||||
<number>6</number>
|
||||
</property>
|
||||
<widget class="QWidget" name="importTab">
|
||||
<attribute name="title">
|
||||
@ -2247,7 +2247,7 @@ p, li { white-space: pre-wrap; }
|
||||
<item row="2" column="1">
|
||||
<widget class="QComboBox" name="openingTabCombo">
|
||||
<property name="toolTip">
|
||||
<string>Which tab to open at startup. (Note: It will default to Profile if there is no open Profile)</string>
|
||||
<string><html><head/><body><p>Which tab to open on loading a profile. (Note: It will default to Profile if there is no open Profile)</p></body></html></string>
|
||||
</property>
|
||||
<property name="currentText">
|
||||
<string>Profile</string>
|
||||
|
Loading…
Reference in New Issue
Block a user