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
path: root/qt
diff options
context:
space:
mode:
authorr.kuznetsov <r.kuznetsov@corp.mail.ru>2016-04-20 17:02:19 +0300
committerr.kuznetsov <r.kuznetsov@corp.mail.ru>2016-04-22 14:52:12 +0300
commit7ab4c38cedbf521e9c37da993c4038eef1cea192 (patch)
tree20ebf5c04d3e982761feea8753b30c36e7f07b12 /qt
parentfe27fac70eeade00550bc383cd32eab500079bee (diff)
Added bounding area for adding organization
Diffstat (limited to 'qt')
-rw-r--r--qt/draw_widget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt/draw_widget.cpp b/qt/draw_widget.cpp
index 3988b3df26..5424a39368 100644
--- a/qt/draw_widget.cpp
+++ b/qt/draw_widget.cpp
@@ -231,12 +231,12 @@ void DrawWidget::SliderReleased()
void DrawWidget::ChoosePositionModeEnable()
{
m_framework->BlockTapEvents(true);
- m_framework->EnableChoosePositionMode(true);
+ m_framework->EnableChoosePositionMode(true, false);
}
void DrawWidget::ChoosePositionModeDisable()
{
- m_framework->EnableChoosePositionMode(false);
+ m_framework->EnableChoosePositionMode(false, false);
m_framework->BlockTapEvents(false);
}