fix offroadTransition signal name

old-commit-hash: 624065cb5b0290c85533f40492b709e0822251e9
This commit is contained in:
Comma Device
2021-03-28 23:41:56 -07:00
parent 4a3e73ddb5
commit ee9bc8cf08
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -114,7 +114,7 @@ DevicePanel::DevicePanel(QWidget* parent) : QWidget(parent) {
for(auto &btn : offroad_btns){
device_layout->addWidget(horizontal_line());
QObject::connect(parent, SIGNAL(offroadTransitions(bool)), btn, SLOT(setEnabled(bool)));
QObject::connect(parent, SIGNAL(offroadTransition(bool)), btn, SLOT(setEnabled(bool)));
device_layout->addWidget(btn);
}
+1 -1
View File
@@ -39,7 +39,7 @@ public:
signals:
void closeSettings();
void offroadTransitions(bool offroad);
void offroadTransition(bool offroad);
void reviewTrainingGuide();
private: