Skip to content

Commit

Permalink
Merge pull request #25 from el7addad/master
Browse files Browse the repository at this point in the history
Hiding OpenFOAM case select button
  • Loading branch information
fmckenna authored Jul 8, 2019
2 parents 87785c5 + e743b3b commit 5451003
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CFD/UI/CFDExpertWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ void CFDExpertWidget::initializeUI()
caseLayout->addWidget(caseEditBox);
caseEditBox->setToolTip(tr("OpenFOAM Remote Case Directory"));
caseSelectButton = new QPushButton(tr("Select"));
caseSelectButton->hide();
caseLayout->addWidget(caseSelectButton);

QLabel *caseLabel = new QLabel("Case", this);
Expand Down Expand Up @@ -188,6 +189,7 @@ void CFDExpertWidget::initializeUI()
startTimeBox->setSingleStep(0.001);
startTimeBox->setMinimum(0);
startTimeBox->setValue(0.01);
startTimeBox->setToolTip(tr("The time in the OpenFOAM simulation when the building force event starts. Forces before that time are ignored."));

inflowCheckBox = new QCheckBox();
//parametersLayout->addRow("Inflow conditions", inflowCheckBox);
Expand Down

0 comments on commit 5451003

Please sign in to comment.