Navigation Menu

Skip to content

Commit

Permalink
Larger range for slicing scaling
Browse files Browse the repository at this point in the history
  • Loading branch information
salvipeter committed Aug 11, 2019
1 parent 3ceba1a commit 0ebe231
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MyWindow.cpp
Expand Up @@ -198,8 +198,8 @@ void MyWindow::setSlicing() {
sb_v[i]->setSingleStep(0.01);
sb_v[i]->setValue(viewer->getSlicingDir()[i]);
}
sb_s->setDecimals(2);
sb_s->setRange(0, 1000);
sb_s->setDecimals(6);
sb_s->setRange(0, 10000);
sb_s->setSingleStep(1);
sb_s->setValue(viewer->getSlicingScaling());
connect(cancel, SIGNAL(pressed()), dlg.get(), SLOT(reject()));
Expand Down

0 comments on commit 0ebe231

Please sign in to comment.