ui: Fixes for release

* Removed pointless overview bundles
* Updated EULA version
* renamed 'Find in View' to 'Find On-Screen'
This commit is contained in:
Eberhard Graether
2017-10-18 16:46:06 +02:00
parent bc8df375f0
commit c3a5405cc4
5 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -572,7 +572,7 @@ void QtMainWindow::findFulltext()
MessageFind(true).dispatch();
}
void QtMainWindow::findInView()
void QtMainWindow::findOnScreen()
{
emit showScreenSearch();
}
@@ -785,7 +785,7 @@ void QtMainWindow::setupEditMenu()
menu->addAction(tr("&Find Symbol"), this, &QtMainWindow::find, QKeySequence::Find);
menu->addAction(tr("&Find Text"), this, &QtMainWindow::findFulltext, QKeySequence(Qt::SHIFT + Qt::CTRL + Qt::Key_F));
menu->addAction(tr("&Find in View"), this, &QtMainWindow::findInView, QKeySequence(Qt::CTRL + Qt::Key_D));
menu->addAction(tr("&Find On-Screen"), this, &QtMainWindow::findOnScreen, QKeySequence(Qt::CTRL + Qt::Key_D));
menu->addSeparator();