diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-09-26 15:54:58 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-09-26 15:54:58 +0200 |
commit | 829b046649d3de6a37dd0983f3e3beb8f033e19e (patch) | |
tree | bf35f0f82263fec7e3b69520ede4178621c29be3 /gui/wizard.cpp | |
parent | 36d52b1d84f057712b0be1791a9b7981ee455495 (diff) |
gui: remove several user-visible settings
- dynamic pose is now enable iff current model is cap
- dynamic pose timeout is now always 500 ms
- fov is now always 75
Diffstat (limited to 'gui/wizard.cpp')
-rw-r--r-- | gui/wizard.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gui/wizard.cpp b/gui/wizard.cpp index 7e394858..4075e695 100644 --- a/gui/wizard.cpp +++ b/gui/wizard.cpp @@ -3,7 +3,7 @@ #include "tracker-pt/ftnoir_tracker_pt_settings.h" #include "filter-accela/ftnoir_filter_accela.h" -Wizard::Wizard() : QWizard(nullptr) +Wizard::Wizard(QWidget* parent) : QWizard(parent) { ui.setupUi(this); connect(this, SIGNAL(accepted()), this, SLOT(set_data())); @@ -66,7 +66,6 @@ void Wizard::set_data() pt.threshold = 31; pt.min_point_size = 1.5; pt.max_point_size = 50; - pt.fov = 1; pt.camera_mode = 0; pt.model_used = m; pt.b->save(); |