diff options
-rw-r--r-- | src/OpenCSGWarningDialog.ui | 3 | ||||
-rw-r--r-- | src/Preferences.cc | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/OpenCSGWarningDialog.ui b/src/OpenCSGWarningDialog.ui index f902521..fe3f192 100644 --- a/src/OpenCSGWarningDialog.ui +++ b/src/OpenCSGWarningDialog.ui @@ -33,6 +33,9 @@ p, li { white-space: pre-wrap; } <property name="text"> <string>Enable OpenCSG</string> </property> + <property name="checked"> + <bool>true</bool> + </property> </widget> </item> <item> diff --git a/src/Preferences.cc b/src/Preferences.cc index 59f8d23..1f52311 100644 --- a/src/Preferences.cc +++ b/src/Preferences.cc @@ -50,7 +50,7 @@ Preferences::Preferences(QWidget *parent) : QMainWindow(parent) this->defaultmap["editor/fontfamily"] = this->fontChooser->currentText(); this->defaultmap["editor/fontsize"] = this->fontSize->currentText().toUInt(); this->defaultmap["advanced/opencsg_show_warning"] = true; - this->defaultmap["advanced/enable_opencsg_opengl1x"] = false; + this->defaultmap["advanced/enable_opencsg_opengl1x"] = true; // Toolbar QActionGroup *group = new QActionGroup(this); |