13
0

T: only list loadable sessions in the recent list

This commit is contained in:
Robin Gareus 2024-05-21 14:27:58 +02:00
parent 609d16628c
commit 2de5f8efd5
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -914,6 +914,16 @@ SessionDialog::redisplay_recent_sessions ()
continue;
}
#ifdef LIVETRAX
/* check 'modified-with' */
if (program_version.empty()) {
continue;
}
if (program_version.rfind (PROGRAM_NAME, 0) != 0) {
continue;
}
#endif
GStatBuf gsb;
g_stat (s.c_str(), &gsb);