Skip to content

Commit

Permalink
+ fixes #0002385: unable to set value higher than 99.99 on Distance v…
Browse files Browse the repository at this point in the history
…alue in Part->Cross Sections
  • Loading branch information
wwmayer committed Dec 31, 2015
1 parent 715ae4e commit ebbb68d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Mod/Part/Gui/CrossSections.cpp
Expand Up @@ -126,6 +126,7 @@ CrossSections::CrossSections(const Base::BoundBox3d& bb, QWidget* parent, Qt::WF
ui->setupUi(this);
ui->position->setRange(-DBL_MAX, DBL_MAX);
ui->position->setDecimals(Base::UnitsApi::getDecimals());
ui->distance->setMaximum(DBL_MAX);
ui->distance->setDecimals(Base::UnitsApi::getDecimals());
vp = new ViewProviderCrossSections();

Expand Down

0 comments on commit ebbb68d

Please sign in to comment.