Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add keybinds configuration file #55

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Fixup CtrlF5 binding typo
  • Loading branch information
lecler-i committed Feb 18, 2019
commit c9811d2872a68d7c36bbbe51aa03de0c7bd3dd41
2 changes: 1 addition & 1 deletion src/mainwindow.cpp
Original file line number Diff line number Diff line change
@@ -67,7 +67,7 @@ MainWindow::MainWindow(QWidget *parent)
actions["speed-up"] = std::make_pair(this, SLOT(slotShortcutCtrlW()));
actions["speed-down"] = std::make_pair(this, SLOT(slotShortcutCtrlS()));
actions["speed-default"] = std::make_pair(this, SLOT(slotShortcutCtrlR()));
actions["reload"] = std::make_pair(this, SLOT(this->slotShortcutCtrlF5()));
actions["reload"] = std::make_pair(this, SLOT(slotShortcutCtrlF5()));

// default key shortcuts
registerShortcut("fullscreen-toggle", "F11");