From: Soeren Apel Date: Wed, 29 Jul 2015 10:04:03 +0000 (+0200) Subject: Change hotkey for sticky scrolling from 'r' to 's' X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=commitdiff_plain;h=69282fae92bb22fd72e1b401b5bcf6ad0784d8e7 Change hotkey for sticky scrolling from 'r' to 's' --- diff --git a/pv/mainwindow.cpp b/pv/mainwindow.cpp index e6f1a5e..d7b1aa4 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());