1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 09:42:10 +02:00

Added Ctrl+= shortcut for zoom +

closes #449
This commit is contained in:
nowrep 2012-07-14 11:46:53 +02:00
parent 36dfab9895
commit 86c58ff9a2
2 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,6 @@
Version 1.3.1
* not yet released
* Ctrl+= shortcut for + zoom in webview
* Ctrl+Enter shortcut in PIM plugin now also works with enter on numpad
* fixed zooming with Ctrl+Wheel for some users
* fixed issues with cookies filtering

View File

@ -1614,6 +1614,13 @@ void QupZilla::keyPressEvent(QKeyEvent* event)
}
break;
case Qt::Key_Equal:
if (event->modifiers() == Qt::ControlModifier) {
weView()->zoomIn();
event->accept();
}
break;
case Qt::Key_1:
number = 1;
break;