Skip to content

Commit

Permalink
Change the keyboard shortcut for Redo on Windows to Ctrl+Y.
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Oct 17, 2014
1 parent e33866c commit 10ae5f8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ MainWindow::MainWindow()
ui->mainToolBar->removeAction(ui->actionFullscreen);
// OS X has a standard Full Screen shortcut we should use.
ui->actionEnter_Full_Screen->setShortcut(QKeySequence((Qt::CTRL + Qt::META + Qt::Key_F)));
#elif defined(Q_OS_WIN)
ui->actionRedo->setShortcut(QString("Ctrl+Y"));
#endif
setDockNestingEnabled(true);

Expand Down

0 comments on commit 10ae5f8

Please sign in to comment.