diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-12-05 23:32:43 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-12-05 23:32:43 +0100 |
commit | 86708a2311c1a3efd975798ff42d934eea0078ed (patch) | |
tree | fc13ca166c346fd30dbd01d712bb30d66d78feb4 /gui/ui.cpp | |
parent | 578749c5b7f245aac08c4e514d2767dba059c4db (diff) |
api/shortcuts: no longer keep shortcuts hardcoded
Diffstat (limited to 'gui/ui.cpp')
-rw-r--r-- | gui/ui.cpp | 23 |
1 files changed, 1 insertions, 22 deletions
@@ -281,7 +281,7 @@ void MainWindow::startTracker() { return; } - work = std::make_shared<Work>(s, pose, libs, this, winId()); + work = std::make_shared<Work>(s, pose, libs, winId()); reload_options(); @@ -489,27 +489,6 @@ void MainWindow::profileSelected(QString name) } } -void MainWindow::shortcutRecentered() -{ - qDebug() << "Center"; - if (work) - work->tracker->center(); -} - -void MainWindow::shortcutToggled() -{ - qDebug() << "Toggle"; - if (work) - work->tracker->toggle_enabled(); -} - -void MainWindow::shortcutZeroed() -{ - qDebug() << "Zero"; - if (work) - work->tracker->zero(); -} - void MainWindow::ensure_tray() { if (tray) |