From 45fb97f41058bd51001fd7bf13307df985a2c8b8 Mon Sep 17 00:00:00 2001 From: David Varley Date: Thu, 10 Sep 2020 00:16:03 +1000 Subject: [PATCH] Start cborn branch - disable annoying startup warning --- sources/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sources/main.cpp b/sources/main.cpp index b575d7cba..04b110c3d 100644 --- a/sources/main.cpp +++ b/sources/main.cpp @@ -206,7 +206,7 @@ int main(int argc, char **argv) my_ma->send_info_to_debug(); delete my_ma; } - +#if 0 // So Annoying! (Perhaps make it once only, or once a day/week? if(! QET::FileFormatStable){ QMessageBox::StandardButton btn = QMessageBox::critical( nullptr, @@ -233,6 +233,7 @@ int main(int argc, char **argv) if (!(btn == QMessageBox::Yes)) return 1; } +#endif return app.exec(); }