From 27e3ae23bcf608e4dabffbd68e54e626423ab64d Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Thu, 4 Jan 2018 08:25:59 +0100 Subject: cv: oops, fix conditional --- cv/video-property-page.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cv/video-property-page.cpp b/cv/video-property-page.cpp index 66060caa..f7126a85 100644 --- a/cv/video-property-page.cpp +++ b/cv/video-property-page.cpp @@ -49,7 +49,7 @@ struct prop_settings_worker final : QThread prop_settings_worker::prop_settings_worker(int idx) { - if (cap.get(cv::CAP_PROP_SETTINGS) < 0 || 1) + if (cap.get(cv::CAP_PROP_SETTINGS) < 0) run_in_thread_async(qApp, []() { QMessageBox msg; msg.setTextFormat(Qt::RichText); -- cgit v1.2.3