Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvng <viktor.govako@gmail.com>2014-06-05 20:47:03 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:16:45 +0300
commita1688c0fe9f2f02adf574c2c050b739d4b558817 (patch)
tree1fb086db9b20c2e0cc047d2580e1e0f641e2926d /qt/draw_widget.cpp
parent54877816d28ec828ce8372702022fd44a9af3da7 (diff)
Fixed showing mark routine.
Diffstat (limited to 'qt/draw_widget.cpp')
-rw-r--r--qt/draw_widget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt/draw_widget.cpp b/qt/draw_widget.cpp
index 9aa0fec964..d0fde0689a 100644
--- a/qt/draw_widget.cpp
+++ b/qt/draw_widget.cpp
@@ -336,7 +336,7 @@ namespace qt
void DrawWidget::OnPressTaskEvent(m2::PointD const & pt, unsigned ms)
{
m_wasLongClick = (ms == LONG_TOUCH_MS);
- GetBalloonManager().OnClick(pt, m_wasLongClick);
+ GetBalloonManager().OnShowMark(m_framework->GetUserMark(pt, m_wasLongClick));
}
m2::PointD DrawWidget::GetDevicePoint(QMouseEvent * e) const