13
0

return to file-conditional for pre-release dialog

This commit is contained in:
Paul Davis 2024-10-17 07:49:25 -06:00
parent c2094085e3
commit 05cb6197a6

View File

@ -91,7 +91,7 @@ StartupFSM::StartupFSM (EngineControl& amd)
* WaitingForSessionPath: if the previous two conditions are not true
*/
if (true || string (VERSIONSTRING).find (".pre0") != string::npos) {
if (string (VERSIONSTRING).find (".pre0") != string::npos) {
string fn = Glib::build_filename (user_config_directory(), ".i_swear_that_i_will_heed_the_guidelines_stated_in_the_pre_release_dialog");
if (!Glib::file_test (fn, Glib::FILE_TEST_EXISTS)) {
set_state (WaitingForPreRelease);