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>2011-11-30 20:58:48 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:29:19 +0300
commitcbebc74dab177cc42b4f94269da46e96979909e0 (patch)
treeaa8b3e6270f17fd32c27e74c50663065df30adaf /qt/mainwindow.cpp
parent038ceb86b6bf1703f940a03e1a806696d53d2713 (diff)
Add mode for upper level query in index ('s' hotkey).
Diffstat (limited to 'qt/mainwindow.cpp')
-rw-r--r--qt/mainwindow.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/qt/mainwindow.cpp b/qt/mainwindow.cpp
index b594948b69..8397aa095a 100644
--- a/qt/mainwindow.cpp
+++ b/qt/mainwindow.cpp
@@ -225,7 +225,8 @@ void MainWindow::CreateNavigationBar()
{ Qt::Key_Minus, SLOT(ScaleMinus()) },
{ Qt::ALT + Qt::Key_Equal, SLOT(ScalePlusLight()) },
{ Qt::ALT + Qt::Key_Minus, SLOT(ScaleMinusLight()) },
- { Qt::Key_A, SLOT(ShowAll()) }
+ { Qt::Key_A, SLOT(ShowAll()) },
+ { Qt::Key_S, SLOT(QueryMaxScaleMode()) }
};
for (size_t i = 0; i < ARRAY_SIZE(arr); ++i)