From 3b708c7f84b0425076b520e1d95627b20fd75fe0 Mon Sep 17 00:00:00 2001 From: wmayer Date: Tue, 12 Feb 2019 21:47:50 +0100 Subject: [PATCH] by default disable the option NoSystemBackground to avoid possible OpenGL glitches --- src/Gui/DlgExpressionInput.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/DlgExpressionInput.cpp b/src/Gui/DlgExpressionInput.cpp index d68e34835d..39abfe3640 100644 --- a/src/Gui/DlgExpressionInput.cpp +++ b/src/Gui/DlgExpressionInput.cpp @@ -72,7 +72,7 @@ DlgExpressionInput::DlgExpressionInput(const App::ObjectIdentifier & _path, // rectangle to appear. To avoid this the 'NoSystemBackground' parameter can be // set to false. Then a normal non-modal dialog will be shown instead (#0002440). bool noBackground = App::GetApplication().GetParameterGroupByPath - ("User parameter:BaseApp/Preferences/Expression")->GetBool("NoSystemBackground", true); + ("User parameter:BaseApp/Preferences/Expression")->GetBool("NoSystemBackground", false); if (noBackground) { #if defined(Q_OS_MAC)