From 93cf7869ce757311223dd4dd792dc182c01bbdef Mon Sep 17 00:00:00 2001 From: gatecat Date: Tue, 21 Sep 2021 14:37:03 +0100 Subject: [PATCH] klayout_main: Don't abort on info messages Signed-off-by: gatecat --- src/klayout_main/klayout_main/klayout.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/klayout_main/klayout_main/klayout.cc b/src/klayout_main/klayout_main/klayout.cc index 8d2fec11d..bfb5fe949 100644 --- a/src/klayout_main/klayout_main/klayout.cc +++ b/src/klayout_main/klayout_main/klayout.cc @@ -171,7 +171,7 @@ void myMessageOutput(QtMsgType type, const QMessageLogContext & /*ctx*/, const Q abort(); case QtInfoMsg: fprintf(stderr, "Info: %s\n", msg.toLocal8Bit ().constData ()); - abort(); + break; } } #else