diff options
Diffstat (limited to 'tracker-easy/tracker-easy-dialog.cpp')
-rw-r--r-- | tracker-easy/tracker-easy-dialog.cpp | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/tracker-easy/tracker-easy-dialog.cpp b/tracker-easy/tracker-easy-dialog.cpp index 6f7642ab..c0dd23dd 100644 --- a/tracker-easy/tracker-easy-dialog.cpp +++ b/tracker-easy/tracker-easy-dialog.cpp @@ -129,16 +129,8 @@ QString EasyTrackerDialog::threshold_display_text(int threshold_value) h = 480; } - //SL: sort this out - /* - if (tracker && tracker->get_cam_info(info) && info.res_x * info.res_y != 0) - { - w = info.res_x; - h = info.res_y; - } - */ - - double value = (double)pt_point_extractor::threshold_radius_value(w, h, threshold_value); + //SL: What are we suppose to do here? + double value = 0.0f; return tr("LED radius %1 pixels").arg(value, 0, 'f', 2); } |