From 6164b2c4a3adb8eae119c7d85371b28e877b79fb Mon Sep 17 00:00:00 2001 From: Efi Fogel Date: Tue, 12 Mar 2024 13:45:12 +0200 Subject: [PATCH] cleaned up --- .../GUI_country_pick_handler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Arrangement_on_surface_2/demo/Arrangement_on_surface_2_earth/GUI_country_pick_handler.cpp b/Arrangement_on_surface_2/demo/Arrangement_on_surface_2_earth/GUI_country_pick_handler.cpp index 859c924d27c..0f9e9b7c796 100644 --- a/Arrangement_on_surface_2/demo/Arrangement_on_surface_2_earth/GUI_country_pick_handler.cpp +++ b/Arrangement_on_surface_2/demo/Arrangement_on_surface_2_earth/GUI_country_pick_handler.cpp @@ -22,8 +22,8 @@ void GUI_country_pick_handler::mouse_press_event(QMouseEvent* e) { // handle country selection if (e->button() == Qt::RightButton) { auto p = e->pos(); - QVector3D sp0(p.x(), m_vp_height - p.y(), 0); - QVector3D sp1(p.x(), m_vp_height - p.y(), 1); + QVector3D sp0(p.x(), m_vp_height - p.y(), 0); + QVector3D sp1(p.x(), m_vp_height - p.y(), 1); auto proj = m_camera.get_projection_matrix(); auto view = m_camera.get_view_matrix();