From 4d4754cfe864b34944d47abe6381cbdd280ce3c4 Mon Sep 17 00:00:00 2001 From: wmayer Date: Sat, 16 Feb 2019 14:51:42 +0100 Subject: [PATCH] fixes 0003837: missing tooltip in STEP preferences dialog --- src/Mod/Part/Gui/DlgSettingsGeneral.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Mod/Part/Gui/DlgSettingsGeneral.cpp b/src/Mod/Part/Gui/DlgSettingsGeneral.cpp index bcfc6cbbe4..2c422ac987 100644 --- a/src/Mod/Part/Gui/DlgSettingsGeneral.cpp +++ b/src/Mod/Part/Gui/DlgSettingsGeneral.cpp @@ -199,6 +199,13 @@ DlgImportExportStep::DlgImportExportStep(QWidget* parent) ui = new Ui_DlgImportExportStep(); ui->setupUi(this); ui->lineEditProduct->setReadOnly(true); + ui->radioButtonAP203->setToolTip(tr("Configuration controlled 3D designs of mechanical parts and assemblies")); + ui->radioButtonAP214->setToolTip(tr("Core data for automotive mechanical design processes")); + + // https://tracker.dev.opencascade.org/view.php?id=25654 + ui->checkBoxPcurves->setToolTip(tr("This parameter indicates whether parametric curves (curves in parametric space of surface)\n" + "should be written into the STEP file. This parameter can be set to off in order to minimize\n" + "the size of the resulting STEP file.")); QRegExp rx; rx.setPattern(QString::fromLatin1("[\\x00-\\x7F]+"));