diff --git a/applications/gui2/src/widgets/imageview.cpp b/applications/gui2/src/widgets/imageview.cpp index 46be78929d74db9ef23847c7e140fb5f721f420e..178ce2f3e09f26ebefc3b71d7bf411cd51554d27 100644 --- a/applications/gui2/src/widgets/imageview.cpp +++ b/applications/gui2/src/widgets/imageview.cpp @@ -568,12 +568,6 @@ bool StereoImageView::scrollEvent(const nanogui::Vector2i& p, const nanogui::Vec ((p.x() >= posr.x()) && (orientation_ == nanogui::Orientation::Horizontal)) || ((p.y() >= posr.y()) && (orientation_ == nanogui::Orientation::Vertical)); - LOG(INFO) << "zoom_right: " << zoom_right; - LOG(INFO) << "pos: " << pos.x() << ", " << pos.y(); - LOG(INFO) << "posl: " << posl.x() << ", " << posl.y(); - LOG(INFO) << "posr: " << posr.x() << ", " << posr.y(); - LOG(INFO) << "p: " << p.x() << ", " << p.y(); - if (orientation_ == nanogui::Orientation::Horizontal) { if (zoom_right) { left_->zoom(v, pf - nanogui::Vector2f{float(left_->width()), 0.0f} - posl);