From 69282fae92bb22fd72e1b401b5bcf6ad0784d8e7 Mon Sep 17 00:00:00 2001 From: Soeren Apel Date: Wed, 29 Jul 2015 12:04:03 +0200 Subject: [PATCH] Change hotkey for sticky scrolling from 'r' to 's' --- pv/mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pv/mainwindow.cpp b/pv/mainwindow.cpp index e6f1a5e1..d7b1aa44 100644 --- a/pv/mainwindow.cpp +++ b/pv/mainwindow.cpp @@ -422,10 +422,10 @@ void MainWindow::setup_ui() action_view_sticky_scrolling_->setCheckable(true); action_view_sticky_scrolling_->setChecked(true); - action_view_sticky_scrolling_->setShortcut(QKeySequence(Qt::Key_R)); + action_view_sticky_scrolling_->setShortcut(QKeySequence(Qt::Key_S)); action_view_sticky_scrolling_->setObjectName( QString::fromUtf8("actionViewStickyScrolling")); - action_view_sticky_scrolling_->setText(tr("Sticky Sc&rolling")); + action_view_sticky_scrolling_->setText(tr("&Sticky Scrolling")); menu_view->addAction(action_view_sticky_scrolling_); view_->enable_sticky_scrolling(action_view_sticky_scrolling_->isChecked()); -- 2.30.2