Skip to content

Commit

Permalink
Renamed as 'Keyboard and Mouse Shortcuts'
Browse files Browse the repository at this point in the history
  • Loading branch information
Yida-Lin committed Jul 29, 2017
1 parent 1a4a04b commit 2162516
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/gui_impl/commands/adapt_channel_view_gui_command.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ QString const AdaptChannelViewGuiCommand::SET_AUTO_SCALE_MAX_TO_MAX_ = "Zero Lin
QString const AdaptChannelViewGuiCommand::SET_AUTO_SCALE_MIN_TO_MAX_ = "Zero Line Fitted";
QString const AdaptChannelViewGuiCommand::ANIMATIONS_ = "Animations";
QString const AdaptChannelViewGuiCommand::SET_ANIMATION_DURATION_ = "Set Animation Duration";
QString const AdaptChannelViewGuiCommand::HOTKEYS_ = "Hotkeys...";
QString const AdaptChannelViewGuiCommand::HOTKEYS_ = "Keyboard and Mouse Shortcuts";
QStringList const AdaptChannelViewGuiCommand::ACTIONS_ = QStringList() <<
AdaptChannelViewGuiCommand::CHANNELS_ <<
AdaptChannelViewGuiCommand::SCALE_ALL_ <<
Expand Down
2 changes: 1 addition & 1 deletion src/gui_impl/dialogs/hotkey_dialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ HotkeyDialog::HotkeyDialog(QWidget *parent) :
{
ui->setupUi(this);
resize(633, 744);
this->setWindowTitle(tr("Hotkeys"));
this->setWindowTitle(tr("Keyboard and Mouse Shortcuts"));

#if defined(Q_OS_MACOS)
QString ctrl = "Cmd";
Expand Down
3 changes: 2 additions & 1 deletion src/gui_impl/main_window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ void MainWindow::initToolBars()
view_toolbar_->addAction(action("Zoom Out Vertical"));
view_toolbar_->addAction(action("Zoom In Horizontal"));
view_toolbar_->addAction(action("Zoom Out Horizontal"));
view_toolbar_->addAction(action("Hotkeys..."));
view_toolbar_->addAction(action("Keyboard and Mouse Shortcuts"));

view_toolbar_views_menu_->addSeparator ();
toggle_all_toolbars_ = new QAction (tr("Hide all Toolbars"), this);
Expand Down Expand Up @@ -263,6 +263,7 @@ void MainWindow::initMenus (QSharedPointer<ApplicationContext> application_conte
help_menu_->addSeparator();
}
help_menu_->addAction (action("About"));
help_menu_->addAction (action("Keyboard and Mouse Shortcuts"));
}

//-----------------------------------------------------------------------------
Expand Down

0 comments on commit 2162516

Please sign in to comment.